71 lines
3.2 KiB
PHP
Executable File
71 lines
3.2 KiB
PHP
Executable File
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-8 col-md-offset-2">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">Passwort zurücksetzen</div>
|
|
|
|
<div class="panel-body">
|
|
<form class="form-horizontal" method="POST" action="{{ route('password.request') }}">
|
|
{{ csrf_field() }}
|
|
|
|
<input type="hidden" name="token" value="{{ $token }}">
|
|
|
|
<div class="form-group{{ $errors->has('email') ? ' has-error' : '' }}">
|
|
<label for="username" class="col-md-4 control-label">Benutzername</label>
|
|
|
|
<div class="col-md-6">
|
|
<input id="username" type="text" class="form-control" name="name" value="{{ $name or old('name') }}" required autofocus>
|
|
|
|
@if ($errors->has('email'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('name') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group{{ $errors->has('password') ? ' has-error' : '' }}">
|
|
<label for="password" class="col-md-4 control-label">Passwort</label>
|
|
|
|
<div class="col-md-6">
|
|
<input id="password" type="password" class="form-control" name="password" required>
|
|
|
|
@if ($errors->has('password'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('password') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group{{ $errors->has('password_confirmation') ? ' has-error' : '' }}">
|
|
<label for="password-confirm" class="col-md-4 control-label">Passwort wiederholen</label>
|
|
<div class="col-md-6">
|
|
<input id="password-confirm" type="password" class="form-control" name="password_confirmation" required>
|
|
|
|
@if ($errors->has('password_confirmation'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('password_confirmation') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<div class="col-md-6 col-md-offset-4">
|
|
<button type="submit" class="btn btn-primary">
|
|
Passwort zurücksetzen
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|