@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') }}
{{ __('QR Code') }}
@if(is_string($qrPath) && trim($qrPath) !== '')
@else
{{ __('No QR code configured.') }}
@endif
{{ __('Submit Confirmation') }}
{{ __('Optional: upload proof of transfer to speed up verification.') }}
{{ __('Status:') }} {{ $manualPayment ? ucfirst($manualPayment->status) : __('Pending') }}
@endsection