@vite(['resources/css/app.css', 'resources/js/app.js'])

My Profile

{{ strtoupper(substr($user->name, 0, 1)) }}

{{ $user->name }}

{{ $user->email }}

@if (session('status') === 'profile-updated')
Profile updated successfully!
@endif

Profile Information

Update your account's profile information and email address.

@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.

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

A new verification link has been sent!

@endif
@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

Must be at least 8 characters

@if (session('status') === 'password-updated')
Password updated successfully!
@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.