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