@include('admin.components.form.input-amount',[
'label' => __("Minimum")."*",
'name' => "min_limit",
'value' => old("min_limit",$payment_gateway->currencies->first()->min_limit),
'currency' => $payment_gateway->currencies->first()->currency_code,
])
@include('admin.components.form.input-amount',[
'label' => __("Maximum")."*",
'name' => "max_limit",
'value' => old("max_limit",$payment_gateway->currencies->first()->max_limit),
'currency' => $payment_gateway->currencies->first()->currency_code,
])
@include('admin.components.form.input-amount',[
'label' => __("Fixed")."*",
'name' => "fixed_charge",
'value' => old("fixed_charge",$payment_gateway->currencies->first()->fixed_charge),
'currency' => $payment_gateway->currencies->first()->currency_code,
])
@include('admin.components.form.input-amount',[
'label' => __("Percent")."*",
'name' => "percent_charge",
'value' => old("percent_charge",$payment_gateway->currencies->first()->percent_charge),
'currency' => $payment_gateway->currencies->first()->currency_code,
])
@include('admin.components.form.input-text-rich',[
'label' =>__( "Instructions")."*",
'name' => "desc",
'value' => old("desc",$payment_gateway->desc),
])
@include('admin.components.button.form-btn',[
'class' => "w-100",
'text' => "Update",
'permission' => "admin.payment.gateway.update",
])