2015-07-12 15:01:42 -04:00
|
|
|
<input type="text" id="{{ $name }}" name="{{ $name }}"
|
2019-04-07 06:34:40 -04:00
|
|
|
@if($errors->has($name)) class="text-neg" @endif
|
2015-07-12 16:31:15 -04:00
|
|
|
@if(isset($placeholder)) placeholder="{{$placeholder}}" @endif
|
2019-10-17 09:19:35 -04:00
|
|
|
@if($autofocus ?? false) autofocus @endif
|
|
|
|
@if($disabled ?? false) disabled="disabled" @endif
|
2015-07-12 15:01:42 -04:00
|
|
|
@if(isset($model) || old($name)) value="{{ old($name) ? old($name) : $model->$name}}" @endif>
|
|
|
|
@if($errors->has($name))
|
|
|
|
<div class="text-neg text-small">{{ $errors->first($name) }}</div>
|
2019-08-13 11:30:29 -04:00
|
|
|
@endif
|