@extends('layouts.customer') @section('title', __('Manual Payment')) @section('page-title', __('Manual Payment')) @section('content') @php $qrPath = is_array($manualConfig ?? null) ? (data_get($manualConfig, 'qr_image_path') ?: data_get($manualConfig, 'qr_image')) : null; @endphp

{{ __('Bank Transfer Instructions') }}

{{ __('Complete the transfer, then submit your confirmation below so we can activate your plan.') }}
{{ __('Back') }}
{{ __('Plan') }}
{{ $subscription->plan_name }}
{{ $subscription->currency }} {{ number_format((float) $subscription->price, 2) }} / {{ $subscription->billing_cycle }}
{{ __('Bank:') }} {{ data_get($manualConfig, 'bank_name') ?: '—' }}
{{ __('Account name:') }} {{ data_get($manualConfig, 'account_name') ?: '—' }}
{{ __('Account number:') }} {{ data_get($manualConfig, 'account_number') ?: '—' }}
@if(is_string(data_get($manualConfig, 'instructions')) && trim((string) data_get($manualConfig, 'instructions')) !== '')
{{ data_get($manualConfig, 'instructions') }}
@endif
{{ __('QR Code') }}
@if(is_string($qrPath) && trim($qrPath) !== '')
{{ __('QR Code') }}
@else
{{ __('No QR code configured.') }}
@endif

{{ __('Submit Confirmation') }}

{{ __('Optional: upload proof of transfer to speed up verification.') }}
{{ __('Status:') }} {{ $manualPayment ? ucfirst($manualPayment->status) : __('Pending') }}
@csrf
@error('transfer_reference')
{{ $message }}
@enderror
@error('payer_notes')
{{ $message }}
@enderror
@error('proof')
{{ $message }}
@enderror @if($manualPayment && is_string($manualPayment->proof_path) && trim($manualPayment->proof_path) !== '') @endif
{{ __('Confirm Transfer') }}
@endsection