@include('admin.components.form.input-file',[
'label' => __("Gateway Image"),
'name' => "image",
'class' => "file-holder",
'old_files_path' => files_asset_path('payment-gateways'),
'old_files' => $payment_gateway->image,
])
@include('admin.components.form.input',[
'label' => __("Gateway Name*"),
'name' => "gateway_name",
'value' => old('gateway_name',$payment_gateway->name),
])
@include('admin.components.form.input',[
'label' =>__( "Currency Code")."*",
'name' => "currency_code",
'value' => old('currency_code',$payment_gateway->currencies->first()->currency_code),
])
@include('admin.components.form.input',[
'label' =>__( "Currency Symbol")."*",
'name' => "currency_symbol",
'value' => old('currency_symbol',$payment_gateway->currencies->first()->currency_symbol),
])
@include('admin.components.form.switcher',[
'label' => __("type"),
'name' => 'crypto',
'value' => old('crypto',$payment_gateway->crypto),
'options' => [__("CRYPTO") => 1, __("FIAT") => 0],
])