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-10-17 21:19:35 +08:00
|
|
|
@if($autofocus ?? false) autofocus @endif
|
|
|
|
@if($disabled ?? false) disabled="disabled" @endif
|
2019-12-30 01:03:52 +08:00
|
|
|
@if($readonly ?? false) readonly="readonly" @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>
|
2019-08-13 23:30:29 +08:00
|
|
|
@endif
|