@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'],
])