@extends('layouts.customer')
@section('title','Account Settings')
@section('page-title','Account Settings')
@section('styles')
@endsection
@section('content')
{{-- Profile --}}
{{-- Password --}}
{{-- 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 --}}
{{-- ============================================================ --}}
{{-- ============================================================ --}}
{{-- STEP 2: Balance Action --}}
{{-- ============================================================ --}}
{{-- ============================================================ --}}
{{-- STEP 2b: Donation Form Popup --}}
{{-- ============================================================ --}}
{{-- ============================================================ --}}
{{-- STEP 3: Farewell --}}
{{-- ============================================================ --}}
@endsection
@section('scripts')
@endsection