@section('content') @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@postForgot')) }}

PLEASE ENTER YOUR EMAIL ADDRESS

{{ Form::text('email', null, array('id' => 'email', 'class' => 'form-control', 'placeholder' => 'Email', 'required' => 'true')) }}

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