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

{{ translate('Select a payment option') }}

@if (get_setting('paypal_payment_activation') == 1)
@endif @if (get_setting('stripe_payment_activation') == 1)
@endif @if (get_setting('instamojo_payment_activation') == 1)
@endif @if (get_setting('razorpay_payment_activation') == 1)
@endif @if (get_setting('paystack_payment_activation') == 1)
@endif @if (get_setting('paytm_payment_activation') == 1)
@endif @if (get_setting('aamarpay_payment_activation') == 1)
@endif @if (get_setting('sslcommerz_payment_activation') == 1)
@endif @if (get_setting('phonepe_payment_activation') == 1)
@endif @foreach ($manual_payments as $method)
@endforeach
@foreach ($manual_payments as $method)
@php echo $method->description @endphp
@if ($method->bank_info != null)
    @foreach (json_decode($method->bank_info) as $key => $info)
  • {{ translate('Bank Name') }} -{{ $info->bank_name }}
  • {{ translate('Account Name') }} - {{ $info->account_name }},
  • {{ translate('Account Number') }} -{{ $info->account_number }}
  • {{ translate('Routing Number') }} - {{ $info->routing_number }}
  • @endforeach
@endif
@endforeach
{{ translate('Browse') }}
{{ translate('Choose File') }}
@endsection @section('script') @endsection