| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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.',
- ],
-
- ],
-
- ];
|