@if($settings)
@csrf @foreach($settings->where('group', $group)->sortBy('order') as $st) @endforeach
{{ $st->name }} @if($st->field_type === 'check') value === 'true') checked @endif> @elseif($st->field_type === 'select') @php $values = explode(',', $st->options); @endphp @else field_type === 'decimal') type="number" step="0.0001" min="0" max="9999" @elseif($st->field_type === 'numeric') type="number" step="1" min="0" max="9999999" @else type="text" maxlength="500" @endif name="{{ $st->id }}" placeholder="{{ $st->default }}" value="{{ $st->value }}"> @endif
@endif