mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
21 lines
952 B
PHP
21 lines
952 B
PHP
<div id="assigned_user" class="form-group{{ $errors->has($fieldname) ? ' has-error' : '' }}">
|
|
|
|
{{ Form::label($fieldname, $translated_name, array('class' => 'col-md-3 control-label')) }}
|
|
|
|
<div class="col-md-7 required">
|
|
<select class="js-data-ajax" data-endpoint="departments" name="{{ $fieldname }}" style="width: 100%" id="department_select">
|
|
@if ($department_id = Input::old($fieldname, (isset($item)) ? $item->{$fieldname} : ''))
|
|
<option value="{{ $department_id }}" selected="selected">
|
|
{{ \App\Models\Department::find($department_id)->name }}
|
|
</option>
|
|
@else
|
|
<option value="">{{ trans('general.select_department') }}</option>
|
|
@endif
|
|
</select>
|
|
</div>
|
|
|
|
|
|
{!! $errors->first($fieldname, '<div class="col-md-8 col-md-offset-3"><span class="alert-msg"><i class="fa fa-times"></i> :message</span></div>') !!}
|
|
|
|
</div>
|