feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
+46
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Wachtwoord opnieuw instellen',
|
||||
|
||||
'heading' => 'Wachtwoord vergeten?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'label' => 'terug naar inloggen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-mailadres',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'request' => [
|
||||
'label' => 'E-mail verzenden',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'sent' => [
|
||||
'body' => 'Als uw account niet bestaat, ontvangt u de e-mail niet.',
|
||||
],
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Te veel pogingen',
|
||||
'body' => 'Probeer het opnieuw over :seconds seconden.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Wachtwoord opnieuw instellen',
|
||||
|
||||
'heading' => 'Wachtwoord opnieuw instellen',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-mailadres',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Wachtwoord',
|
||||
'validation_attribute' => 'wachtwoord',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Wachtwoord bevestigen',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Wachtwoord opnieuw instellen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Te veel resetpogingen',
|
||||
'body' => 'Probeer het opnieuw over :seconds seconden.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user