Administrator Profile

{{ __('Profile Information') }}

{{ __("Update your account's profile information and email address.") }}

@csrf
@csrf @method('PATCH')
@foreach ($errors->get('name') as $message)
{{ $message }}
@endforeach
@foreach ($errors->get('email') as $message)
{{ $message }}
@endforeach @if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && ! $user->hasVerifiedEmail())

{{ __('Your email address is unverified.') }}

@endif @if (session('status') === 'verification-link-sent')
{{ __('A new verification link has been sent to your email address.') }}
@endif
@if (session('status') === 'profile-updated') {{ __('Saved.') }} @endif