@extends(template().'layouts.user') @section('title') {{ 'Pay with ' . optional($deposit->gateway)->name ?? 'Manual Transfer' }} @endsection @push('style') @endpush @section('content')

@lang('Pay with ' . optional($deposit->gateway)->name)

@lang("Please follow the instruction below")

@lang("You have requested to deposit") {{ number_format($deposit->amount, 2) }} {{ $deposit->payment_method_currency }} ,@lang("Please pay") {{ getAmount($deposit->payable_amount) }} {{ $deposit->payment_method_currency }} @lang("for successful payment.")

@lang(optional($deposit->gateway)->note)

@csrf @if(optional($deposit->gateway)->parameters) @foreach($deposit->gateway->parameters as $k => $v) @if($v->type == "text")
@if ($errors->has($k)) {{ trans($errors->first($k)) }} @endif
@elseif($v->type == "number")
@if ($errors->has($k)) {{ trans($errors->first($k)) }} @endif
@elseif($v->type == "date")
@if ($errors->has($k)) {{ trans($errors->first($k)) }} @endif
@elseif($v->type == "textarea")
@if ($errors->has($k)) {{ trans($errors->first($k)) }} @endif
@elseif($v->type == "file")
Choose Image
@lang("Allowed JPG, JPEG or PNG. Max size of 5MB")
@error($k) @lang($message) @enderror
@endif @endforeach @endif
@endsection @push('script') @endpush