2015-08-05 21:59:39 +02:00
|
|
|
<input type="password" id="{{ $name }}" name="{{ $name }}"
|
|
|
|
@if($errors->has($name)) class="neg" @endif
|
|
|
|
@if(isset($placeholder)) placeholder="{{$placeholder}}" @endif
|
2015-10-22 21:23:39 +02:00
|
|
|
@if(isset($tabindex)) tabindex="{{$tabindex}}" @endif
|
2015-08-08 21:05:30 +02:00
|
|
|
@if(old($name)) value="{{ old($name)}}" @endif>
|
2015-08-05 21:59:39 +02:00
|
|
|
@if($errors->has($name))
|
|
|
|
<div class="text-neg text-small">{{ $errors->first($name) }}</div>
|
|
|
|
@endif
|