@extends('admin.layouts.master') @section('page_title')

Reset password

@stop @section('page_subtitle') Please provide your email address to send the password reset email. @stop @section('page_content')
@if ($errors->count() > 0)
{{ $errors->first() }}
@endif @if (Session::has('error'))
{{ trans(Session::get('reason')) }}
@elseif (Session::has('success'))
An e-mail with the password reset has been sent.
@endif {{ Form::open(array('url' => 'admin/password/remind')) }}
{{ HTML::link('admin/login','< Back to Login') }}
{{ Form::label('email', 'Email') }} * {{ Form::text('email') }}
  {{ Form::submit('Submit', array('class' => 'image_button small right')) }}
{{ Form::close() }}
@stop