@extends('layouts.app') @section('title', 'Profile') @push('styles') @endpush @section('content')
Dashboard / Profile

Profile Information

Update your account's profile information and email address.

@if (session('status') === 'profile-updated')
Your profile has been updated successfully.
@endif
@csrf @method('PATCH')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror

If you change your email, you will need to verify it again.

Delete 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
@csrf @method('DELETE')

This action cannot be undone.

@endsection