@include('layout/backend/_header')
Reset Password
@if(Session::has('passwordError'))
× {!! session('passwordError') !!}
@endif {{Form::open(['url' => URL::route('password-reset',[$token]), 'class' => 'forgotpasword-form','autocomplete'=>'off'])}}
{{Form::password('password', ['class' => 'form-control strong reset-pass', 'placeholder' => 'Password', 'required' => 'true','autocomplete'=>'off'])}}

Hint: The password should be eight characters long,requires to have atleast one upper, one lower case letters, one number and one of the !@()*$#% symbol.

{{Form::close()}}
@include('layout/backend/_footer')