@extends('backend.layout.master') @section('title', __('Payment Info Settings')) @section('style') @endsection @section('content')

{{ __('Payment Info Settings') }}

@csrf
@php $all_currency_position = ['left','right']; @endphp
@php $global_currency = strtolower(get_static_option('site_global_currency')) ?? '';@endphp @if($global_currency != 'USD')
{{sprintf(__('enter %s to USD exchange rate. eg: 1 %s = ? USD'),$global_currency,$global_currency) }}
@endif @if($global_currency != 'BDT')
{{sprintf(__('enter %s to USD exchange rate. eg: 1 %s = ? BDT'),$global_currency,$global_currency) }}
@endif @if($global_currency != 'IDR')
{{sprintf(__('enter %s to USD exchange rate. eg: 1 %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 %s to USD exchange rate. eg: 1 %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 MYR exchange rate. eg: 1'.$global_currency.' = ? MYR')}}
@endif @can('payment-info-settings') @endcan
@endsection @section('script') @endsection