@extends('layouts.app') @section('title','Bank Transfer Details') @section('content')
{{-- Amount to Pay --}}
Transfer Exactly
GH₵{{ number_format($purchase->amount_ghs, 2) }}
For {{ number_format($purchase->total_points) }} Points
Reference: {{ $purchase->payment_reference }}
{{-- Bank Details --}}
📋 Bank Details
@foreach(['Bank Name'=>$bankInfo['name'],'Account Number'=>$bankInfo['account'],'Account Holder'=>$bankInfo['holder'],'Branch'=>$bankInfo['branch']] as $label => $value) @if($value)
{{ $label }}
{{ $value }}
@endif @endforeach
Transfer Reference
{{ $purchase->payment_reference }}
Instructions:
{{ $bankInfo['instructions'] }}
{{-- Submit Proof Form --}}
📸 Upload Payment Proof
@csrf @if($errors->any())
{{ $errors->first() }}
@endif
📸
Tap to upload screenshot
JPG, PNG – max 5MB

⏱ Points will be credited within 24 hours after verification

@endsection @push('scripts') @endpush