2015-07-13 03:01:42 +08:00
|
|
|
<input type="text" id="{{ $name }}" name="{{ $name }}"
|
2019-04-07 18:34:40 +08:00
|
|
|
@if($errors->has($name)) class="text-neg" @endif
|
2015-07-13 04:31:15 +08:00
|
|
|
@if(isset($placeholder)) placeholder="{{$placeholder}}" @endif
|
2019-08-07 04:29:42 +08:00
|
|
|
@if(isset($disabled) && $disabled) disabled="disabled" @endif
|
2015-10-23 03:23:39 +08:00
|
|
|
@if(isset($tabindex)) tabindex="{{$tabindex}}" @endif
|
2015-07-13 03:01:42 +08: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
|