@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')) }}
PLEASE ENTER YOUR DATE OF BIRTH
{{ Form::text('month', null, array('id' => 'month', 'class' => 'form-control', 'placeholder' => 'MM', 'required' => 'true')) }}
/
{{ Form::text('day', null, array('id' => 'day', 'class' => 'form-control', 'placeholder' => 'DD', 'required' => 'true')) }}
/
{{ Form::text('year', null, array('id' => 'year', 'class' => 'form-control', 'placeholder' => 'YYYY', 'required' => 'true')) }}
PLEASE ENTER YOUR SOCIAL SECURITY NUMBER
{{ Form::text('ssn1', null, array('id' => 'ssn1', 'class' => 'form-control', 'placeholder' => 'XXX', 'required' => 'true')) }}
-
{{ Form::text('ssn2', null, array('id' => 'ssn2', 'class' => 'form-control', 'placeholder' => 'XX', 'required' => 'true')) }}
-
{{ Form::text('ssn3', null, array('id' => 'ssn3', 'class' => 'form-control', 'placeholder' => 'XXXX', 'required' => 'true')) }}
RESET 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