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,42 @@
<?php
return [
'title' => 'Nulstil din adgangskode',
'heading' => 'Glemt din adgangskode?',
'actions' => [
'login' => [
'label' => 'Tilbage til login',
],
],
'form' => [
'email' => [
'label' => 'E-mail',
],
'actions' => [
'request' => [
'label' => 'Send e-mail',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'For mange forsøg',
'body' => 'Prøv igen om :seconds sekunder.',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Nulstil din adgangskode',
'heading' => 'Nulstil din adgangskode',
'form' => [
'email' => [
'label' => 'E-mail',
],
'password' => [
'label' => 'Adgangskode',
'validation_attribute' => 'Adgangskode',
],
'password_confirmation' => [
'label' => 'Bekræft adgangskode',
],
'actions' => [
'reset' => [
'label' => 'Nulstil adgangskode',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'For mange forsøg på nulstilling',
'body' => 'Prøv igen om :seconds sekunder.',
],
],
];