Fixed regression from #16150

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2025-03-04 15:53:30 +00:00
parent acaa3a28e7
commit ccea55308b

View file

@ -78,13 +78,11 @@
<label for="brand">{{ trans('admin/settings/general.web_brand') }}</label> <label for="brand">{{ trans('admin/settings/general.web_brand') }}</label>
</div> </div>
<div class="col-md-9"> <div class="col-md-9">
<select name="brand" id="brand" class="form-control select2 minimumResultsForSearch" style="width: 150px;"> {!! Form::select('brand', [
@foreach($optionTypes as $value => $label) '1'=> trans('admin/settings/general.logo_option_types.text'),
<option value="{{ $value }}" {{ old('brand', $setting->brand) == $value ? 'selected' : '' }}> '2'=> trans('admin/settings/general.logo_option_types.logo'),
{{ $label }} '3'=> trans('admin/settings/general.logo_option_types.logo_and_text')], old('brand', $setting->brand), array('class' => 'form-control select2', 'style'=>'width: 150px ;')) !!}
</option>
@endforeach
</select>
</div> </div>
</div> </div>