Resource and View Updating

This commit is contained in:
chrosey 2017-06-15 00:08:35 +02:00
parent 1deb0f59fc
commit a7414e8d66
6 changed files with 16 additions and 15 deletions

View File

@ -13,7 +13,7 @@ return [
| |
*/ */
'failed' => 'These credentials do not match our records.', 'failed' => 'Die Anmeldedaten stimmen nicht überein.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 'throttle' => 'Zu viele Loginversuche. Bitte versuchen Sie es in :seconds Sekunden wieder.',
]; ];

View File

@ -13,7 +13,7 @@ return [
| |
*/ */
'previous' => '« Previous', 'previous' => '« Zurück',
'next' => 'Next »', 'next' => 'Weiter »',
]; ];

View File

@ -13,10 +13,10 @@ return [
| |
*/ */
'password' => 'Passwords must be at least six characters and match the confirmation.', 'password' => 'Passwörter müssen aus 6 oder mehr Zeichen bestehen und mit der Wiederholung übereinstimmen.',
'reset' => 'Your password has been reset!', 'reset' => 'Das Passwort wurde zurückgesetzt!',
'sent' => 'We have e-mailed your password reset link!', 'sent' => 'Eine Email zum Zurücksetzen des Passworts wurde zugeschickt!',
'token' => 'This password reset token is invalid.', 'token' => 'Das Passwort-Token ist ungültig',
'user' => "We can't find a user with that e-mail address.", 'user' => "Es konnte kein Benutzer mit dieser E-Mailadresse gefunden werden.",
]; ];

View File

@ -13,7 +13,7 @@ return [
| |
*/ */
'failed' => 'These credentials do not match our records.', 'failed' => 'Die Anmeldedaten stimmen nicht überein.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 'throttle' => 'Zu viele Loginversuche. Bitte versuchen Sie es in :seconds Sekunden wieder.',
]; ];

View File

@ -22,7 +22,7 @@
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a> <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="#">Link</a> <a class="nav-link" href="{{ route('veranstaltung.index') }}">Veranstaltungen</a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link disabled" href="#">Disabled</a> <a class="nav-link disabled" href="#">Disabled</a>
@ -30,7 +30,7 @@
</ul> </ul>
<form class="form-inline my-2 my-lg-0"> <form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="text" placeholder="Search"> <input class="form-control mr-sm-2" type="text" placeholder="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button> <button class="btn btn-outline-success my-2 my-sm-0" type="submit">Suchen</button>
</form> </form>
</div> </div>
</div> </div>

View File

@ -2,7 +2,7 @@
@section('title', 'Neue Veranstaltung') @section('title', 'Neue Veranstaltung')
@section('content') @section('content')
<h2 class="display-2">{{ $name }}</h2> <h2>{{ $name }}</h2>
<hr/> <hr/>
<dl class="row"> <dl class="row">
<dt class="col-md-2"> <dt class="col-md-2">
@ -32,5 +32,6 @@
</dd> </dd>
</dl> </dl>
<hr/> <hr/>
<a href="{{ route('veranstaltung.edit', ['id' => $id]) }}">Bearbeiten</a> <a class="btn btn-link" href="{{ route('veranstaltung.edit', ['id' => $id]) }}">Bearbeiten</a>
<a class="btn btn-link" href="{{ route('veranstaltung.index') }}">Zurück zur Liste</a>
@endsection @endsection