@extends($ajaxCall) @section("content") {!! Form::open(['method' => 'GET']) !!} @if (Session::get("error")) {!! Session::get("error") !!}
@endif
{!! Form::label('email', 'Email Address') !!} {!! Form::email('email', \request("email"), array('class'=>'input-block-level form-control', 'placeholder'=>'Email Address', 'autocomplete' => 'off', 'id' => 'email')) !!}
{!! $errors->first("email") !!}
{!! Form::label('password', 'Password') !!} {!! Form::password('password', array('class'=>'input-block-level form-control', 'placeholder'=>'Password', 'id' => 'password')) !!}
{!! $errors->first("password") !!}
{!! Form::label('password_confirmation', 'Password') !!} {!! Form::password('password_confirmation', array('class'=>'input-block-level form-control', 'placeholder'=>'Confirm', 'id' => 'password_confirmation')) !!}
{!! $errors->first("password_confirmation") !!}
{!! Form::submit("Reset Password", array('class'=>'btn btn-large btn-primary btn-block', 'id' => 'submit_button')) !!} {!! Form::close() !!} @stop