14 lines
369 B
PHP
14 lines
369 B
PHP
@extends('layout')
|
|
|
|
@section('content')
|
|
<h1>Neues Passwort setzen</h1>
|
|
|
|
{!! Form::open(array('url' => 'activate', 'method' => 'put')) !!}
|
|
Passwort: {{Form::password('password')}}
|
|
{{Form::hidden('email', $_GET['mail'])}}
|
|
{{Form::hidden('pin', $_GET['pin'])}}<br />
|
|
{{Form::submit('Speichern')}}
|
|
{!! Form::close() !!}
|
|
|
|
|
|
@endsection |