@section('content')

Reset Password

@if (Session::has('error')) {{ trans(Session::get('reason')) }} @endif {{ Form::open(array('action' => 'AccountController@postReset')) }}

{{ Form::label('password', 'Password') }} {{ Form::password('password', null, array('id' => 'password', 'required' => 'true')) }}

{{ Form::label('password_confirmation', 'Confirm Password') }} {{ Form::password('password_confirmation', null, array('id' => 'password_confirmation', 'required' => 'true')) }}

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