@extends('layouts.customer') @section('title','Account Settings') @section('page-title','Account Settings') @section('styles') @endsection @section('content')
{{-- Profile --}}

👤 Profile Information

@csrf
{{-- Password --}}

🔐 Change Password

@csrf
{{-- Account Info --}}

📊 Account Information

MEMBER SINCE
{{ $user->created_at->format('d M Y') }}
CREDIT BALANCE
${{ number_format($user->credit_balance,2) }} AUD
STATUS
{{ ucfirst($user->status) }}
{{-- Danger zone --}}

⚠️ Danger Zone

Once you delete your account, all your data will be permanently removed.

{{-- ============================================================ --}} {{-- STEP 1: Reason for Deletion Popup --}} {{-- ============================================================ --}} {{-- ============================================================ --}} {{-- STEP 2: Balance Options Popup (only if balance > 0) --}} {{-- ============================================================ --}} {{-- ============================================================ --}} {{-- STEP 3: Farewell Message Popup --}} {{-- ============================================================ --}} @endsection @section('scripts') @endsection