@extends('layouts.app', ['title' => __('User Profile')]) @section('content') @include('users.partials.header', [ 'title' => __('Hello') . ' '. auth()->user()->name, ])

Admin

{{ __('Edit Profile') }}

@csrf
{{ __('User information') }}
@if (session('status')) @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{-- @include('layouts.footers.auth') --}}
@endsection