@extends('layouts.auth') @section('title', 'Reset Password | ' . Options::get('title') ) @section('content')

Reset Password

@if (session('status'))
{{ session('status') }}
@endif
{{ csrf_field() }}
{{ Form::email('email', null, ['placeholder' => 'Email Address', 'class' => 'form-control', 'aria-describedby' => 'email_addon']) }}
@if( $errors->any() ) {{ $errors->first('email') }} @endif
@endsection