{{ Form::open(
['method'=>'post',
'url' => route('settings-other.update'),
'id' => 'settting_save',
'enctype' => "multipart/form-data"
])
}}
@foreach($setting_others as $setting_other)
@if($setting_other['type'] == 'Text' && $setting_other['status'] == 1)
@endif
@if($setting_other['type'] == 'TextArea' && $setting_other['status'] == 1)
@endif
@if($setting_other['type'] == 'CheckBox' && $setting_other['status'] == 1)
@endif
@if($setting_other['type'] == 'RadioButton' && $setting_other['status'] == 1)
@endif
@if($setting_other['type'] == 'CheckBoxGroup' && $setting_other['status'] == 1)
@endif
@if($setting_other['type'] == 'List' && $setting_other['status'] == 1)
@endif
@if($setting_other['type'] == 'RichText' && $setting_other['status'] == 1)
@endif
@if($setting_other['type'] == 'Label' && $setting_other['status'] == 1)
@endif
@if($setting_other['type'] == 'File' && $setting_other['status'] == 1)
@endif
@endforeach