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,56 @@
<?php
return [
'title' => '注册',
'heading' => '注册',
'actions' => [
'login' => [
'before' => '或者',
'label' => '登录你的账号',
],
],
'form' => [
'email' => [
'label' => '邮箱地址',
],
'name' => [
'label' => '姓名',
],
'password' => [
'label' => '密码',
'validation_attribute' => '密码',
],
'password_confirmation' => [
'label' => '确认密码',
],
'actions' => [
'register' => [
'label' => '提交注册',
],
],
],
'notifications' => [
'throttled' => [
'title' => '尝试注册次数过多',
'body' => '请在 :seconds 秒后重试。',
],
],
];