Profile

@if($isGuest ?? false) Sign in to manage your account details and password. @else Update your account details and password. @endif

@if($isGuest ?? false)

Create a free account to save your settings and unlock the full dashboard.

@else {{-- Profile information --}}

Profile information

Update your account's name 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
{{-- Update password --}}

Update password

Ensure your account is using a long, random password to stay secure.

@csrf @method('put')
@error('current_password', 'updatePassword')

{{ $message }}

@enderror
@error('password', 'updatePassword')

{{ $message }}

@enderror
@error('password_confirmation', 'updatePassword')

{{ $message }}

@enderror
@if (session('status') === 'password-updated')

Saved.

@endif
{{-- Delete account --}}

Delete account

Once your account is deleted, all of its resources and data will be permanently deleted.

@csrf @method('delete')

Are you sure you want to delete your account?

Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm.

@error('password', 'userDeletion')

{{ $message }}

@enderror
@endif