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
+56
View File
@@ -0,0 +1,56 @@
<?php
return [
'title' => 'Registreren',
'heading' => 'Registreren',
'actions' => [
'login' => [
'before' => 'of',
'label' => 'inloggen op je account',
],
],
'form' => [
'email' => [
'label' => 'E-mailadres',
],
'name' => [
'label' => 'Naam',
],
'password' => [
'label' => 'Wachtwoord',
'validation_attribute' => 'wachtwoord',
],
'password_confirmation' => [
'label' => 'Wachtwoord bevestigen',
],
'actions' => [
'register' => [
'label' => 'Registreren',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Te veel registratiepogingen',
'body' => 'Probeer het opnieuw over :seconds seconden.',
],
],
];