@extends('layouts.app') @section('title', 'Pay with '. $data['gateway_name']) @section('content')

Pay with {{ $data['gateway_name'] }}


@include('checkout.back_to_payment_options')

Total

{{ format_money($data['total']) }}

@if($paymentMethod->instruction)
Instructions
{!! nl2br($paymentMethod->instruction) !!}

@endif
@csrf @if($paymentMethod->settings->requires_transaction_number)
{{ showError($errors,'reference') }}
@endif @if($paymentMethod->settings->requires_uploading_attachment)
{{ showError($errors,'attachment') }}
Allowed file types: pdf,jpeg,png,zip, Maximum file size:10 MB
@endif
@endsection