@extends('dashboard.user.layouts.master') @section('content')

{{ $title }}

@include('dashboard.user.layouts.components.breadcrumbs')

Total Balance

{{ currency($user->currency) }}{{ formatAmount($user->balance) }}

{{ ucfirst($user->account_type) }}

Account Type

@if ($user->account_state->value == 1) Active @elseif($user->account_state->value == 2) Disabled @elseif($user->account_state->value == 3) KYC Pending @else Frozen @endif

Account State

@include('dashboard.user.components.home_transactions')
@include('dashboard.user.components.home_cards_and_quick_transfer')
@endsection