@section('content') @if (Session::has('error')) {{ trans(Session::get('reason')) }} @endif @if($errors->has())
@foreach ($errors->all() as $row) {{ $row }}
@endforeach
@elseif (Session::has('success'))
An e-mail with the password reset has been sent.
@endif {{ Form::open(array('action' => 'AccountController@postReset')) }}

Reset Password

{{ Form::password('password', array('id' => 'password', 'class' => 'form-control', 'required' => true, 'placeholder' => 'Password')) }}
{{ Form::password('password_confirmation', array('id' => 'password_confirmation', 'class' => 'form-control', 'required' => true, 'placeholder' => 'Confirm Password')) }}

We are committed to maintaining the confidentiality, integrity and security of any personal information about our users. Please refer to our Security and Privacy Policy for more information on our standards and practices.

{{ Form::close() }} @endsection