2015-07-12 21:01:42 +02:00
|
|
|
<input type="text" id="{{ $name }}" name="{{ $name }}"
|
|
|
|
@if($errors->has($name)) class="neg" @endif
|
2015-07-12 22:31:15 +02:00
|
|
|
@if(isset($placeholder)) placeholder="{{$placeholder}}" @endif
|
2015-10-22 21:23:39 +02:00
|
|
|
@if(isset($tabindex)) tabindex="{{$tabindex}}" @endif
|
2015-07-12 21:01:42 +02: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
|