@extends('frontend.layouts.app') @section('content')

{{ __('Recharge') }}

@if ($message = Session::get('error')) @endif
@csrf
{{ __('Payment Method') }}
@if (get_option('paypal_status') == 1)
@endif @if (get_option('bank_status') == 1)
@endif @if (get_option('stripe_status') == 1)
@endif @if (get_option('mollie_status') == 1)
@endif @if (get_option('im_status') == 1)
@endif @if (get_option('razorpay_status') == 1)
@endif @if (get_option('paystack_status') == 1)
@endif @if (get_option('sslcommerz_status') == 1)
@endif @if (get_option('mercadopago_status') == 1)
@endif @if (get_option('flutterwave_status') == 1)
@endif @if (get_option('coinbase_status') == 1)
@endif @if (get_option('zitopay_status') == 1)
@endif @if (get_option('iyzipay_status') == 1)
@endif @if (get_option('bitpay_status') == 1)
@endif @if (get_option('braintree_status') == 1)
@endif @foreach(newGateway() as $index => $gateway) @if (get_option("{$gateway}_status") == 1)
@endif @endforeach
{{ __('We protect your payment information using encryption to provide bank-level security') }}

{{ __('Subtotal') }} @if (get_currency_placement() == 'after') {{ get_number_format($amount) }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ get_number_format($amount) }} @endif
{{ __('Platform Charge') }} @if (get_currency_placement() == 'after') {{ get_platform_charge($amount) }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ get_platform_charge($amount) }} @endif
{{ __('Grand Total') }} @if (get_currency_placement() == 'after') {{get_number_format($amount + get_platform_charge($amount)) }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{get_number_format($amount + get_platform_charge($amount)) }} @endif
{{ __('Conversion Rate') }} 1 {{ get_currency_symbol() }} = ?
In
@if (env('APP_DEMO') == 'active')
@else
@endif
@foreach(newGateway() as $index => $gateway) @endforeach @endsection @push('script') @if (get_option('sslcommerz_mode') == 'live') @else @endif @endpush