@isset($gateway)
@foreach ($gateway->currencies as $item)
{{ $item->name }}
@include('admin.components.form.input-file',[ 'label' => __("Gateway Image"), 'name' => "gateway_currency[".$item->currency_code."][image]", 'class' => "file-holder", 'old_files_path' => files_asset_path('payment-gateways'), 'old_files' => $item->image, ])
{{ __("Amount Limit") }}
@include('admin.components.form.input-amount',[ 'label' => __("Minimum"), 'name' => "gateway_currency[".$item->currency_code."][min_limit]", 'value' => old("gateway_currency.".$item->currency_code.".min_limit",get_amount($item->min_limit,null,$pricison)), 'currency' => $item->currency_code, ])
@include('admin.components.form.input-amount',[ 'label' => __("Maximum"), 'name' => "gateway_currency[".$item->currency_code."][max_limit]", 'value' => old("gateway_currency.".$item->currency_code.".max_limit",get_amount($item->max_limit,null,$pricison)), 'currency' => $item->currency_code, ])
{{ __("Transaction Limit") }}
({{ __("Execute if the value is greater than zero") }})
@include('admin.components.form.input-amount',[ 'label' => __("Daily Limit"), 'name' => "gateway_currency[".$item->currency_code."][daily_limit]", 'value' => old("gateway_currency.".$item->currency_code.".daily_limit",get_amount($item->daily_limit,null,$pricison)), 'currency' => $item->currency_code, ])
@include('admin.components.form.input-amount',[ 'label' => __("Monthly Limit"), 'name' => "gateway_currency[".$item->currency_code."][monthly_limit]", 'value' => old("gateway_currency.".$item->currency_code.".monthly_limit",get_amount($item->monthly_limit,null,$pricison)), 'currency' => $item->currency_code, ])
{{ __("Charges") }}
@include('admin.components.form.input-amount',[ 'label' => __("Fixed"), 'name' => "gateway_currency[".$item->currency_code."][fixed_charge]", 'value' => old("gateway_currency.".$item->currency_code.".fixed_charge",get_amount($item->fixed_charge,null,$pricison)), 'currency' => $item->currency_code, ])
@include('admin.components.form.input-amount',[ 'label' =>__( "Percent"), 'name' => "gateway_currency[".$item->currency_code."][percent_charge]", 'value' => old("gateway_currency.".$item->currency_code.".percent_charge",get_amount($item->percent_charge,null,$pricison)), 'currency' => "%", ])
{{ __("Rate") }}
1   {{ get_default_currency_code($default_currency) }} = currency_code.".rate",get_amount($item->rate,null,$pricison)) }}" name="{{ "gateway_currency[".$item->currency_code."][rate]" }}"> {{ $item->currency_code }}
@include('admin.components.form.input',[ 'label' => __("Symbol"), 'name' => "gateway_currency[".$item->currency_code."][currency_symbol]", 'value' => old("gateway_currency.".$item->currency_code.".currency_symbol",$item->currency_symbol), ])
@endforeach
@endisset