@extends('layouts.public') @section('content')
{{ Form::open( array('action' => array('RemindersController@getReset', $token))) }} {{ Form::hidden('token', $token) }}
Neues Passwort erstellen {{ Form::label(Lang::get('reminders.label_password')) }} {{ Form::password('password') }} {{ Form::label(Lang::get('reminders.label_password_reenter')) }} {{ Form::password('password_confirmation') }} {{ Form::submit(ucwords(Lang::get('reminders.reset_password'))) }}
{{ Form::close() }}
@stop