mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
# Conflicts: # resources/views/settings/saml.blade.php # resources/views/settings/security.blade.php # resources/views/setup/user.blade.php
8 lines
522 B
PHP
8 lines
522 B
PHP
<div class="form-group {{ $errors->has('phone') ? ' has-error' : '' }}">
|
|
<label for="phone" class="col-md-3 control-label">{{ trans('admin/suppliers/table.phone') }}</label>
|
|
<div class="col-md-7">
|
|
<input class="form-control" aria-label="phone" maxlength="191" name="phone" type="text" id="phone" value="{{ old('phone', $item->phone) }}">
|
|
{!! $errors->first('phone', '<span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span>') !!}
|
|
</div>
|
|
</div>
|