@extends('layouts.admin') @section('title', 'Profile') @section('page-title', 'Profile') @section('breadcrumbs') Profile @endsection @section('content')
@if (session('status') === 'profile-updated' || session('success'))
check_circle

{{ session('success') ?? 'Profile updated successfully.' }}

@endif
@csrf @method('PATCH')

General Information

Profile Photo

Public

Update your profile picture. Recommended size is 256x256px. JPG, PNG or GIF allowed.

Address Information

Change Password

Leave blank if you don't want to change your password.

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.

@csrf @method('DELETE')
@error('password', 'userDeletion')

{{ $message }}

@enderror
@push('scripts') @endpush @endsection