7 lines
507 B
PHP
7 lines
507 B
PHP
<div class="form-group {{ $errors->has('fax') ? ' has-error' : '' }}">
|
|
<label for="fax" class="col-md-3 control-label">{{ trans('admin/suppliers/table.fax') }}</label>
|
|
<div class="col-md-7">
|
|
<input class="form-control" type="text" name="fax" aria-label="fax" id="fax" value="{{ old('fax', $item->fax) }}" maxlength="34" />
|
|
{!! $errors->first('fax', '<span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span>') !!}
|
|
</div>
|
|
</div>
|