mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-15 01:54:09 -08:00
7 lines
461 B
PHP
7 lines
461 B
PHP
|
<div class="form-group {{ $errors->has('fax') ? ' has-error' : '' }}">
|
||
|
{{ Form::label('fax', trans('admin/suppliers/table.fax'), array('class' => 'col-md-3 control-label')) }}
|
||
|
<div class="col-md-7">
|
||
|
{{Form::text('fax', old('fax', $item->fax), array('class' => 'form-control')) }}
|
||
|
{!! $errors->first('fax', '<span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span>') !!}
|
||
|
</div>
|
||
|
</div>
|