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.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
'failed' => 'Die Anmeldedaten stimmen nicht überein.',
'throttle' => 'Zu viele Loginversuche. Bitte versuchen Sie es in :seconds Sekunden wieder.',
];

View File

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

View File

@ -13,10 +13,10 @@ return [
|
*/
'password' => 'Passwords must be at least six characters and match the confirmation.',
'reset' => 'Your password has been reset!',
'sent' => 'We have e-mailed your password reset link!',
'token' => 'This password reset token is invalid.',
'user' => "We can't find a user with that e-mail address.",
'password' => 'Passwörter müssen aus 6 oder mehr Zeichen bestehen und mit der Wiederholung übereinstimmen.',
'reset' => 'Das Passwort wurde zurückgesetzt!',
'sent' => 'Eine Email zum Zurücksetzen des Passworts wurde zugeschickt!',
'token' => 'Das Passwort-Token ist ungültig',
'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.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
'failed' => 'Die Anmeldedaten stimmen nicht überein.',
'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>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
<a class="nav-link" href="{{ route('veranstaltung.index') }}">Veranstaltungen</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Disabled</a>
@ -30,7 +30,7 @@
</ul>
<form class="form-inline my-2 my-lg-0">
<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>
</div>
</div>

View File

@ -2,7 +2,7 @@
@section('title', 'Neue Veranstaltung')
@section('content')
<h2 class="display-2">{{ $name }}</h2>
<h2>{{ $name }}</h2>
<hr/>
<dl class="row">
<dt class="col-md-2">
@ -32,5 +32,6 @@
</dd>
</dl>
<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