Migrate form label in fax input partial

This commit is contained in:
Marcus Moore 2025-02-05 13:19:22 -08:00
parent ecc1bd69b9
commit fb9e7cf5e1
No known key found for this signature in database

View file

@ -1,7 +1,7 @@
<div class="form-group {{ $errors->has('fax') ? ' has-error' : '' }}">
{{ Form::label('fax', trans('admin/suppliers/table.fax'), array('class' => 'col-md-3 control-label')) }}
<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>
</div>