@extends('layouts.app') @section('page-title', 'Profile') @push('page-css') @vite(['resources/css/tools/dashboard.css']) @endpush @section('content')

Profile Settings

Manage your account information and security

@if(session('status') === 'profile-updated')
Profile updated successfully.
@endif @if(session('status') === 'password-updated')
Password updated successfully.
@endif {{-- Profile Information --}}

Profile Information

Update your name and email address.

@csrf @method('patch')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
{{-- Update Password --}}

Update Password

Use a strong, unique password to keep your account secure.

@csrf @method('put')
@error('current_password', 'updatePassword')
{{ $message }}
@enderror
@error('password', 'updatePassword')
{{ $message }}
@enderror
@error('password_confirmation', 'updatePassword')
{{ $message }}
@enderror
{{-- Delete Account --}}

Delete Account

Permanently delete your account and all associated data. This action cannot be undone.

Are you sure? Please enter your password to confirm permanent deletion of your account.

@csrf @method('delete')
@error('password', 'userDeletion')
{{ $message }}
@enderror
@endsection @push('page-scripts') @endpush