@extends('backend.admin-master') @section('site-title') {{__('Payment Settings')}} @endsection @section('style') @include('backend.partials.media-upload.style') @endsection @section('content')
@include('backend.partials.message')

{{__("Payment Gateway Settings")}}

@csrf
@php $all_currency_position = ['left','right']; @endphp
@php $global_currency = get_static_option('site_global_currency');@endphp @if($global_currency != 'USD')
{{sprintf(__('enter %1$s to USD exchange rate. eg: 1 %2$s = ? USD'),$global_currency,$global_currency) }}
@endif @if($global_currency != 'IDR')
{{sprintf(__('enter %1$s to USD exchange rate. eg: 1 %2$s = ? IDR'),$global_currency,$global_currency) }}
@endif @if($global_currency != 'INR' && !empty(get_static_option('paytm_gateway') || !empty(get_static_option('razorpay_gateway'))))
{{__('enter '.$global_currency.' to INR exchange rate. eg: 1'.$global_currency.' = ? INR')}}
@endif @if($global_currency != 'NGN' && !empty(get_static_option('paystack_gateway') ))
{{__('enter '.$global_currency.' to NGN exchange rate. eg: 1'.$global_currency.' = ? NGN')}}
@endif @if($global_currency != 'ZAR')
{{sprintf(__('enter %1$s to USD exchange rate. eg: 1 %2$s = ? ZAR'),$global_currency,$global_currency) }}
@endif @if($global_currency != 'BRL')
{{__('enter '.$global_currency.' to BRL exchange rate. eg: 1'.$global_currency.' = ? BRL')}}
@endif @if($global_currency != 'MYR')
{{__('enter '.$global_currency.' to BRL exchange rate. eg: 1'.$global_currency.' = ? MYR')}}
@endif @include('backend.general-settings.payment-gateway.credentials')
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection