mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
parent
acaa3a28e7
commit
ccea55308b
|
@ -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>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue