@extends('layouts.bankapp') @section('title', $title) @section('content')
{{-- Page Header --}}

Local Transfer

Send money to any local bank account

{{-- Alert Messages --}} {{-- Balance Summary --}}

Available Balance

{{ Auth::user()->currency }}{{ number_format(Auth::user()->account_bal, 2, '.', ',') }}

Account: {{ Auth::user()->accountnumber }}

{{-- Transfer Form --}}
@csrf
{{-- Section: Amount --}}
{{ Auth::user()->currency }}

Limits: {{ Auth::user()->currency }}{{ number_format(Auth::user()->min_transfer_amount ?? 1, 2) }} - {{ Auth::user()->currency }}{{ number_format(Auth::user()->max_transfer_amount ?? Auth::user()->account_bal, 2) }}


{{-- Section: Beneficiary --}}

Beneficiary Information

{{-- Optional Fields Toggle --}} {{-- Optional Fields --}}

{{-- Section: Security --}}

Security & Details

{{-- Action Buttons --}}
Cancel
{{-- Preview Confirmation Modal --}} {{-- Processing Modal --}}
@endsection