feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -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 秒後再試。',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user