@include('admin.components.form.switcher',[
'label' => 'Type*',
'name' => 'currency_type',
'value' => old('currency_type'),
'options' => ['FIAT' => 'FIAT','CRYPTO' => 'CRYPTO'],
])
@include('admin.components.form.input',[
'label' => __('Name').'*',
'name' => 'currency_name',
'value' => old('currency_name'),
])
@include('admin.components.form.input',[
'label' => __('Code').'*',
'name' => 'currency_code',
'value' => old('currency_code'),
])
@include('admin.components.form.input',[
'label' => __('Symbol')."*",
'name' => 'currency_symbol',
'value' => old('currency_symbol'),
])