@extends('layouts.guest') @section('title', trans('auth.reset_password')) @section('content')

Reset Password

@include('auth.partials._notifications') {!! Form::open(['route'=>'auth.forgot-password']) !!} {!! FormField::email('email') !!} {!! Form::submit(trans('auth.send_reset_password_link'), ['class'=>'btn btn-success btn-block']) !!} {!! link_to_route('auth.login','Back to Login', [],['class'=>'btn btn-default btn-block']) !!} {!! Form::close() !!}
@endsection