@foreach ($themeSettingsCollection as $themeSetting)
@if ($themeSetting->field === 'input')
@if (isset($themeSetting->disabled) && $themeSetting->disabled)
@else
required ? 'required' : '' }}>
@endif
@elseif ($themeSetting->field === 'number')
required ? 'required' : '' }}>
@elseif ($themeSetting->field === 'textarea')
@elseif ($themeSetting->field === 'ckeditor')
@elseif ($themeSetting->field === 'select')
@elseif ($themeSetting->field === 'bootstrap-select')
@elseif ($themeSetting->field === 'checkbox')
@elseif ($themeSetting->field === 'radios')
@foreach ($themeSetting->options as $key => $value)
value == $key ? 'checked' : '' }}>
@endforeach
@elseif ($themeSetting->field === 'toggle')
required ? 'required' : '' }}
data-toggle="toggle" {{ $themeSetting->value ? 'checked' : '' }}>
@elseif ($themeSetting->field === 'color')
@elseif ($themeSetting->field === 'image')
@if ($themeSetting->box_type == 'regular')
{{ $themeSetting->label }}
@if ($themeSetting->description)
{{ $themeSetting->description }}
@endif
@elseif ($themeSetting->box_type == 'square-small')
@if ($themeSetting->description)
{{ $themeSetting->description }}
@endif
@elseif ($themeSetting->box_type == 'square-large')
@if ($themeSetting->description)
{{ $themeSetting->description }}
@endif
@elseif ($themeSetting->box_type == 'full')
@if ($themeSetting->description)
{{ $themeSetting->description }}
@endif
@endif
@endif
@endforeach