password.blade.php 337 Bytes
<input type="password" id="{{ $name }}" name="{{ $name }}"
       @if($errors->has($name)) class="neg" @endif
       @if(isset($placeholder)) placeholder="{{$placeholder}}" @endif
       @if(old($name)) value="{{ old($name)}}" @endif>
@if($errors->has($name))
    <div class="text-neg text-small">{{ $errors->first($name) }}</div>
@endif