@extends('layouts.default') @section('content')

Profile

Manage your account settings and profile information.

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') @endif
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
@if (session('status') === 'password-updated') @endif
Delete Account

{{ __('Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.') }}

@endsection