@extends('layouts.admin') @section('page-title') {{ __('Profile Settings') }} @endsection @section('breadcrumb') @endsection @section('content')
{{ __('Profile Information') }}
{{ __("Update your account's profile information, phone numbers, and email address.") }}
@csrf @method('patch')
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
{{-- New Phone Number Field --}}
@error('phone_number') {{ $message }} @enderror
{{-- New WhatsApp Number Field --}}
@error('whatsapp_number') {{ $message }} @enderror
@if (session('status') === 'profile-updated') {{ __('Saved successfully.') }} @endif
{{ __('Update Password') }}
{{ __('Ensure your account is using a long, random password to stay secure.') }}
@csrf @method('put')
@error('current_password') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@if (session('status') === 'password-updated') {{ __('Password updated.') }} @endif
{{ __('Delete Account') }}

{{ __('Once your account is deleted, all of its resources and data will be permanently deleted. Please download any data or information that you wish to retain.') }}

@endsection