mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
8 lines
551 B
PHP
8 lines
551 B
PHP
|
<!-- Depreciation -->
|
||
|
<div class="form-group {{ $errors->has('depreciation_id') ? ' has-error' : '' }}">
|
||
|
<label for="depreciation_id" class="col-md-3 control-label">{{ trans('general.depreciation') }}</label>
|
||
|
<div class="col-md-7">
|
||
|
{{ Form::select('depreciation_id', $depreciation_list , Input::old('depreciation_id', $item->depreciation_id), array('class'=>'select2', 'style'=>'width:350px')) }}
|
||
|
{!! $errors->first('depreciation_id', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
||
|
</div>
|
||
|
</div>
|