@section('content')

FORGOT PASSWORD

@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')) }}

Enter the email address associated with your account, and we'll email you a link to reset your password.

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

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