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-08-06 16:29:42 -04:00
|
|
|
@if(isset($disabled) && $disabled) disabled="disabled" @endif
|
2015-10-22 15:23:39 -04:00
|
|
|
@if(isset($tabindex)) tabindex="{{$tabindex}}" @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>
|
|
|
|
@endif
|