Your IP : 216.73.216.79


Current Path : /var/www/html/bookstack/resources/views/form/
Upload File :
Current File : /var/www/html/bookstack/resources/views/form/password.blade.php

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