Home My Profile Configuration

Personal Profile Information

@include('profile.partials.update-profile-information-form')

Security & Password

@include('profile.partials.update-password-form')
@php $userOrdersCount = \App\Models\Order::where('user_id', auth()->id())->count(); @endphp

Danger Zone (Delete Account)

@if($userOrdersCount > 0)
Account Deletion Disabled You have {{ $userOrdersCount }} active or past order(s) in your account. Accounts with purchase history cannot be deleted for order tracking and warranty records.
@else
@include('profile.partials.delete-user-form')
@endif