@php $showAddressSection = ($appSettings['register_collect_address'] ?? false) || ($appSettings['my_account_show_address'] ?? true); @endphp @push('styles') @endpush
{{ auth()->user()->name }}
{{ auth()->user()->email }}
@csrf @method('PUT')

Details

@if (($appSettings['dob_required'] ?? false) || ($appSettings['dob_show'] ?? false))
@endif
@if ($showAddressSection)

Address

@endif

Security


Multi-Factor Authentication

@if (auth()->user()->mfa_enabled_at)

MFA is enabled on your account.

@if (!($appSettings['mfa_required'] ?? false))
@csrf
@endif
@csrf
@else

MFA is currently disabled.

Set Up MFA @endif
@if (!auth()->user()->hasRole('admin') && !auth()->user()->hasRole('manager'))

Delete Account

This will permanently delete your account and remove your account-related records. You will be logged out immediately.

@csrf @method('DELETE')
@endif
@push('scripts') @endpush