@extends('backEnd.master') @section('styles') @endsection @section('mainContent') @php $currency_code = getCurrencyCode(); @endphp

{{ __('wallet.choose_payment_gateway') }}

{{ __('Payment amount') }}: {{ single_price($recharge_amount) }}

@if ($payment_gateways->where('method','Stripe')->first()->active_status == 1)
@csrf @csrf
@endif @if(isModuleActive('Bkash') && $payment_gateways->where('method','Bkash')->first()->active_status == 1)
@csrf @if(env('IS_BKASH_LOCALHOST') === "1") @else @endif @php $type = 'subscription_payment'; $amount = $recharge_amount; @endphp @include('bkash::bkash-script',compact('type','amount'))
@endif @if(isModuleActive('SslCommerz') && $payment_gateways->where('method','SslCommerz')->first()->active_status == 1)
@csrf
@endif @if (isModuleActive('MercadoPago') && $payment_gateways->where('method','Mercado Pago')->first()->active_status == 1) @endif @if ($payment_gateways->where('method','RazorPay')->first()->active_status == 1)
@csrf
@endif @if ($payment_gateways->where('method','PayPal')->first()->active_status == 1)
@csrf
@endif @if ($payment_gateways->where('method','PayStack')->first()->active_status == 1)
@csrf {{-- required --}} {{-- --}} {{-- required --}}
@endif @if ($payment_gateways->where('method','Bank Payment')->first()->active_status == 1) @endif @if ($payment_gateways->where('method','PayTM')->first()->active_status == 1) @endif @if ($payment_gateways->where('method','Instamojo')->first()->active_status == 1) @endif @if ($payment_gateways->where('method','Midtrans')->first()->active_status == 1)
@csrf
@endif @if ($payment_gateways->where('method','PayUMoney')->first()->active_status == 1) @endif @if ($payment_gateways->where('method','JazzCash')->first()->active_status == 1) @endif @if ($payment_gateways->where('method','Google Pay')->first()->active_status == 1) @endif @if (@$payment_gateways->where('method','FlutterWave')->first()->active_status == 1) @endif
@include('multivendor::seller_payment.components._bank_payment_modal') @include('multivendor::seller_payment.components._paytm_payment_modal') @include('multivendor::seller_payment.components._instammojo_payment_modal') @include('multivendor::seller_payment.components._payumoney_payment_modal') @include('multivendor::seller_payment.components._jazzcash_payment_modal') @include('multivendor::seller_payment.components._google_pay_script') @include('multivendor::seller_payment.components._flutter_wave_payment_modal') @include('multivendor::seller_payment.components._mercado_pago_modal') @endsection @push('scripts') @endpush