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' => 'Obnovte svoje heslo',
'heading' => 'Zabudli ste svoje heslo?',
'actions' => [
'login' => [
'label' => 'späť na prihlásenie',
],
],
'form' => [
'email' => [
'label' => 'Emailová adresa',
],
'actions' => [
'request' => [
'label' => 'Odoslať email',
],
],
],
'notifications' => [
'sent' => [
'body' => 'Ak Váš účet neexistuje, e-mail nedostanete.',
],
'throttled' => [
'title' => 'Príliš veľa pokusov',
'body' => 'Prosím skúste to znovu o :seconds sekúnd.',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Obnovte svoje heslo',
'heading' => 'Obnovte svoje heslo',
'form' => [
'email' => [
'label' => 'Emailová adresa',
],
'password' => [
'label' => 'Heslo',
'validation_attribute' => 'heslo',
],
'password_confirmation' => [
'label' => 'Potvrdenie hesla',
],
'actions' => [
'reset' => [
'label' => 'Obnoviť heslo',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Príliš veľa pokusov',
'body' => 'Prosím skúste to znovu o :seconds sekúnd.',
],
],
];