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