-
Notifications
You must be signed in to change notification settings - Fork 19
Select
Alexander Grigorev edited this page Apr 26, 2019
·
3 revisions
Тема:
<?php $inputThemes = getInput('themes', $user->themes); ?>
<select class="form-control" name="themes" id="themes">
<option value="0">Автоматически</option>
@foreach ($setting['themes'] as $theme)
<?php $selected = ($theme == $inputThemes) ? ' selected' : ''; ?>
<option value="{{ $theme }}"{{ $selected }}>{{ $theme }}</option>
@endforeach
</select>
<div class="invalid-feedback">{{ textError('themes') }}</div>