@include('admin.components.form.switcher',[
'label' => __("Type").'*',
'name' => 'type',
'value' => old('type','FIAT'),
'options' => [__('FIAT') => 'FIAT',__('CRYPTO') => 'CRYPTO'],
])
@include('admin.components.form.input',[
'label' => __("Name").'*',
'name' => 'name',
'value' => old('name')
])
@include('admin.components.form.input',[
'label' => __("Code").'*',
'name' => 'code',
'value' => old('code')
])
@include('admin.components.form.input',[
'label' => __("Symbol").'*',
'name' => 'symbol',
'value' => old('symbol')
])
@include('admin.components.form.radio-button',[
'label' => __("Role").'*',
'name' => 'role',
'value' => old('role','both'),
'options' => [__('Both') => 'both', __('Sender') => 'sender', __('Receiver') => 'receiver'],
])
@include('admin.components.form.switcher',[
'label' => __("Option").'*',
'name' => 'option',
'value' => old('option','optional'),
'options' => [__("Optional") => 'optional',__("Default") => 'default'],
])