@extends('layouts.user') @section('title') {{ 'Pay with '.optional($order->gateway)->name ?? '' }} @endsection @section('content')

{{trans('Please follow the instruction below')}}

{{trans('You have requested to deposit')}} {{getAmount($order->amount)}} {{$basic->currency}} , {{trans('Please pay')}} {{getAmount($order->final_amount)}} {{$order->gateway_currency}} {{trans('for successful payment')}}

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

@csrf @if(optional($order->gateway)->parameters) @foreach($order->gateway->parameters as $k => $v) @if($v->type == "text")
validation == "required") required @endif> @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")
...
@lang('Select') {{$v->field_level}} @lang('Change') validation == "required") required @endif> @lang('Remove')
@if ($errors->has($k))
{{ __($errors->first($k)) }} @endif
@endif @endforeach @endif
@push('css-lib') @endpush @push('extra-js') @endpush @endsection