2015-08-05 15:59:39 -04:00
|
|
|
<input type="password" id="{{ $name }}" name="{{ $name }}"
|
2019-04-07 06:34:40 -04:00
|
|
|
@if($errors->has($name)) class="text-neg" @endif
|
2015-08-05 15:59:39 -04:00
|
|
|
@if(isset($placeholder)) placeholder="{{$placeholder}}" @endif
|
2021-01-13 15:21:57 -05:00
|
|
|
@if(isset($autocomplete)) autocomplete="{{$autocomplete}}" @endif
|
2015-08-08 15:05:30 -04:00
|
|
|
@if(old($name)) value="{{ old($name)}}" @endif>
|
2015-08-05 15:59:39 -04:00
|
|
|
@if($errors->has($name))
|
|
|
|
<div class="text-neg text-small">{{ $errors->first($name) }}</div>
|
2021-01-13 15:21:57 -05:00
|
|
|
@endif
|