{{-- resources/views/livewire/pages/profile/account.blade.php --}} @extends('layouts.dashboard') @section('title', 'Account Settings - PangoQ') @section('content')
Back to Profile

Account & Billing

Manage your payment methods, billing preferences, and account limits

Account Active
@if(session('success'))

{{ session('success') }}

@endif

Account Balance

${{ number_format(12450.75, 2) }}

Available funds

Monthly Spending

${{ number_format(3250.00, 2) }}

This month

Transaction Limit

${{ number_format($user->daily_transaction_limit ?? 5000, 0) }}

Daily limit

Active Cards

3

Payment methods

Account Configuration

Basic account settings and preferences

{{ ucfirst($user->account_type ?? 'Personal') }}
@csrf @method('PATCH')
@error('account_type')

{{ $message }}

@enderror
@error('currency')

{{ $message }}

@enderror
$

Set your daily spending limit (minimum $100, maximum $50,000)

@error('daily_transaction_limit')

{{ $message }}

@enderror

Your unique account identifier

Recent Transactions

Your latest financial activity

View All

Deposit

From Bank Transfer

+$2,500.00

2 hours ago

Trip Booking

Sydney to Melbourne

-$450.00

Yesterday

Savings Goal

Europe Trip Fund

-$200.00

2 days ago

Payment Methods

Manage your payment options and preferences

@error('wallet_provider')

{{ $message }}

@enderror
@error('preferred_payment_method')

{{ $message }}

@enderror

For direct bank transfers and withdrawals

@error('linked_bank_account')

{{ $message }}

@enderror

Saved Payment Methods

β€’β€’β€’β€’ β€’β€’β€’β€’ β€’β€’β€’β€’ 4242

Visa ending in 4242

Primary

Commonwealth Bank

β€’β€’β€’β€’β€’β€’β€’β€’5678

Verified

PayPal

{{ Auth::user()->email }}

Connected

Security & Limits

Account security settings and spending limits

Two-Factor Authentication

Extra security for your financial transactions

Transaction Notifications

Get notified of all account activity

Auto-Save Transactions

Automatically save spare change from purchases

Spending Limits

Daily Limit ${{ number_format($user->daily_transaction_limit ?? 5000, 0) }}
Weekly Limit ${{ number_format(($user->daily_transaction_limit ?? 5000) * 7, 0) }}
Monthly Limit ${{ number_format(($user->daily_transaction_limit ?? 5000) * 30, 0) }}

Quick Actions

Account Closure

Permanently close your account and delete all data

Before closing your account

  • Withdraw all remaining funds from your account
  • Cancel any pending trips or bookings
  • Download any data you want to keep
  • Remove all payment methods
@endsection