@extends('layouts.adminlte-layout') @section('title', 'Profile Settings') @section('content-header')

Profile Settings

Manage your account settings and preferences

@endsection @section('page-content')

Profile Information

@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

Update Password

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

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