{{ __('Profile Information') }}

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

@csrf
@csrf @method('patch')
@error('name') {{ $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
@if (session('status') === 'profile-updated')

Saved.

@endif