@extends('layouts.homeMaster') @section('pageContent') @if (Session::has('error')) error : {{ trans(Session::get('reason')) }} @endif {{ Form::open(array('route' => array('password.update', $token))) }}

{{ Form::label('email', 'Email') }} {{ Form::text('email') }}

{{ Form::label('password', 'Password') }} {{ Form::text('password') }}

{{ Form::label('password_confirmation', 'Password confirm') }} {{ Form::text('password_confirmation') }}

{{ Form::hidden('token', $token) }}

{{ Form::submit('Submit') }}

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