@include('admin.components.form.input',[
'label' => __("Field Name*"),
'name' => "label[]",
'attribute' => "required",
])
@include('admin.components.form.switcher',[
'label' => __("Field Necessity*"),
'name' => "field_necessity[]",
'options' => [__('Required') => "1",__('Optional') => "0"],
'value' => old("field_necessity[]","1"),
])