feat: add routes, lang, tests, stubs, docs, and docker configurations

This commit is contained in:
2026-05-21 16:05:16 +07:00
parent fad70d096b
commit 28a06315b8
3385 changed files with 177070 additions and 0 deletions
@@ -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.',
],
],
];