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' => 'パスワードリセット',
'heading' => 'パスワードをお忘れですか?',
'actions' => [
'login' => [
'label' => 'ログインへ戻る',
],
],
'form' => [
'email' => [
'label' => 'メールアドレス',
],
'actions' => [
'request' => [
'label' => 'メールを送信',
],
],
],
'notifications' => [
'sent' => [
'body' => 'アカウントが存在しない場合、メールは届きません。',
],
'throttled' => [
'title' => 'リクエストが多すぎます',
'body' => ':seconds 秒後に再試行してください。',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => 'パスワードリセット',
'heading' => 'パスワードをリセット',
'form' => [
'email' => [
'label' => 'メールアドレス',
],
'password' => [
'label' => 'パスワード',
'validation_attribute' => 'パスワード',
],
'password_confirmation' => [
'label' => 'パスワードの確認',
],
'actions' => [
'reset' => [
'label' => 'パスワードをリセット',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'リセットの試行回数が多すぎます',
'body' => ':seconds 秒後に再試行してください。',
],
],
];