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

{{ $title }}

{{-- ── CARD HEADER ── --}}
Review Transfer Details

Please carefully review the information below before authorizing this transaction.

{{-- ── AMOUNT HERO ── --}}

Amount to Debit

{{ currency($user->currency) }}{{ formatAmount($transfer->amount) }}

{{ $transfer->transfer_type->fullLabel() }}
{{-- ── BENEFICIARY INFO ── --}}

Beneficiary Information

Beneficiary Name

{{ $transfer->recipient_name }}

Account Number

{{ $transfer->recipient_account_number }}

Bank Name

{{ $transfer->recipient_bank }}
@if ($transfer->recipient_swift_code || $transfer->recipient_iban_code || $transfer->recipient_routing_number)

@if ($transfer->recipient_swift_code) SWIFT Code @elseif ($transfer->recipient_iban_code) IBAN @elseif ($transfer->recipient_routing_number) Routing Number @endif

{{ $transfer->recipient_swift_code ?? ($transfer->recipient_iban_code ?? $transfer->recipient_routing_number) }}
@endif @if ($transfer->description)

Description

{{ $transfer->description }}
@endif
{{-- ── ADDITIONAL CODES (if multiple) ── --}} @php $codes = array_filter([ 'SWIFT' => $transfer->recipient_swift_code ?? null, 'IBAN' => $transfer->recipient_iban_code ?? null, 'Routing' => $transfer->recipient_routing_number ?? null, ]); @endphp @if (count($codes) > 1)
@foreach ($codes as $label => $value)

{{ $label }}

{{ $value }}
@endforeach
@endif {{-- ── AUTHORIZATION NOTICE ── --}}

By confirming this transfer, you authorize the debit of the above amount from your account. This action may not be reversible once processed.

{{-- ── ACTIONS ── --}}
Cancel @if (!$user->shouldTransferFail()) @if ($transferNeedVerificationCode) Confirm & Continue @else Confirm Transfer @endif @else Confirm Transfer @endif
{{-- /card-body --}}
{{-- /card --}}
@endsection