@if (session('status'))
@switch(session('status')) @case('profile-updated') Profile updated locally. @break @case('profile-updated-whmcs-synced') Profile updated successfully. @break @case('profile-updated-whmcs-sync-failed') Profile saved, but some account details may take longer to update. @break @default {{ session('status') }} @endswitch
@endif

Profile

Account Details

Email: {{ $user->email }}

Currency: {{ $user->currency ?: config('zt.currency.fallback') }}

Currency Lock: {{ $user->currency_locked_at ? 'Locked after first order' : 'Not locked yet' }}

Email and billing currency are account records and cannot be changed here.

@include('profile.partials.update-profile-information-form')
@if (config('zt.profile.local_password_update_enabled', false)) @include('profile.partials.update-password-form') @else

Change Password

Use the password reset page to change your account password.

Send Password Reset @endif
@if (config('zt.profile.local_account_delete_enabled', false)) @include('profile.partials.delete-user-form') @else

Delete Account

Account deletion is handled by support to protect your services and billing history.

@endif