{{-- resources/views/dashboard/settings/index.blade.php --}} @extends('layouts.user') @section('title', 'Settings') @section('styles') @endsection @section('content')

Settings

{{-- Tabs --}}
{{-- ─── TAB: Account ─── --}}
@if (!empty(auth()->user()->avatar)) avatar @else {{ strtoupper(substr(auth()->user()->name, 0, 1)) }} @endif
Personal Information
Your registered account details
@csrf
Full Name
{{ auth()->user()->name }}
Email Address
{{ auth()->user()->email }}
@if (auth()->user()->email_verified_at) Verified @else Unverified @endif
Username
{{ auth()->user()->username ?? 'Not set' }}
Member Since
{{ auth()->user()->created_at?->format('d F Y') }}
Last Updated
{{ auth()->user()->updated_at?->format('d M Y, H:i') }}
Regional Settings
Location and currency preferences
Country
{{ auth()->user()->country ?? 'Not set' }}
Currency
{{ auth()->user()->currency ?? 'Not set' }}
Account Balance
${{ number_format((float) (auth()->user()->balance ?? 0), 2) }}
{{-- Logout zone --}}
Session
Sign out of your account on this device.
@csrf
{{-- ─── TAB: Security ─── --}}
Security Overview
Account protection status
{{-- Security status rows --}}
Email Verification
{{ auth()->user()->email }}
@if (auth()->user()->email_verified_at) Verified @else Not Verified @endif
Password
••••••••••••
Active
Account Created
{{ auth()->user()->created_at?->format('d M Y, H:i') }}
Last Profile Update
{{ auth()->user()->updated_at?->format('d M Y, H:i') }}
{{-- Security tips --}}
Stay Secure
Never share your password or account details. BelluchiBroker will never ask for your credentials via email or phone.
Verified Account
@if (auth()->user()->email_verified_at) Your email is verified. Your account is protected and in good standing. @else Please verify your email address to unlock full account features and security. @endif
{{-- ─── TAB: Wallet ─── --}}
Available Balance
${{ number_format((float) $walletSummary['available_balance'], 2) }}
Ready to use
Pending Total
${{ number_format((float) $walletSummary['pending_total'], 2) }}
In processing
Total Deposits
${{ number_format((float) $walletSummary['total_deposits'], 2) }}
All-time inflows
Total Withdrawals
${{ number_format((float) $walletSummary['total_withdrawals'], 2) }}
All-time outflows
Completed Tx
{{ $walletSummary['completed_transactions'] }}
Settled transactions
Pending Tx
{{ $walletSummary['pending_transactions'] }}
Awaiting settlement
{{-- Wallet mini chart --}}
Wallet Overview
Balance flow at a glance
{{-- ─── TAB: Quick Actions ─── --}}
Quick Actions
Jump to the most important sections
@endsection @push('scripts') @endpush