feat(LRL App): init V0

This commit is contained in:
2025-10-22 17:09:48 +02:00
parent d3303fee95
commit 0924da3cda
475 changed files with 44862 additions and 7 deletions

View File

@@ -0,0 +1,56 @@
<?php
return [
'title' => 'Register',
'heading' => 'Sign up',
'actions' => [
'login' => [
'before' => 'or',
'label' => 'sign in to your account',
],
],
'form' => [
'email' => [
'label' => 'Email address',
],
'name' => [
'label' => 'Name',
],
'password' => [
'label' => 'Password',
'validation_attribute' => 'password',
],
'password_confirmation' => [
'label' => 'Confirm password',
],
'actions' => [
'register' => [
'label' => 'Sign up',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Too many registration attempts',
'body' => 'Please try again in :seconds seconds.',
],
],
];