@extends('laravel-authentication-acl::client.layouts.base') @section('title') Change password @stop @section('content')

Change your password to {!! Config::get('acl_base.app_name') !!}

@if($errors && ! $errors->isEmpty() ) @foreach($errors->all() as $error)
{!! $error !!}
@endforeach @endif
{!! Form::open(array('url' => URL::route("user.reminder.process"), 'method' => 'post') ) !!}
{!! Form::label('password', 'New password: ') !!}
{!! Form::password('password', ['id' => 'password', 'class' => 'form-control', 'placeholder' => 'New password', 'required', 'autocomplete' => 'off']) !!}
{!! Form::hidden('email',$email) !!} {!! Form::hidden('token',$token) !!} {!! Form::close() !!}
@stop