@if(session('success')) @endif @if(session('error')) @endif
Update Profile

{{ __('Profile Information') }}

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

@csrf
@csrf @method('patch') @if (session('status') === 'profile-updated') @endif
@error('firstname')
{{ $message }}
@enderror
@error('lastname')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror @if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && ! $user->hasVerifiedEmail())

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

@if (session('status') === 'verification-link-sent')

{{ __('A new verification link has been sent to your email address.') }}

@endif
@endif

{{ __('Update Password') }}

{{ __("Ensure your account is using a long, random password to stay secure.") }}

@csrf @method('put') @if (session('status') === 'password-updated') @endif