| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
-
- return [
-
- 'title' => 'Login',
-
- 'heading' => 'Sign in',
-
- 'actions' => [
-
- 'register' => [
- 'before' => 'or',
- 'label' => 'sign up for an account',
- ],
-
- 'request_password_reset' => [
- 'label' => 'Forgot password?',
- ],
-
- ],
-
- 'form' => [
-
- 'email' => [
- 'label' => 'Email address',
- ],
-
- 'password' => [
- 'label' => 'Password',
- ],
-
- 'remember' => [
- 'label' => 'Remember me',
- ],
-
- 'actions' => [
-
- 'authenticate' => [
- 'label' => 'Sign in',
- ],
-
- ],
-
- ],
-
- 'messages' => [
-
- 'failed' => 'These credentials do not match our records.',
-
- ],
-
- 'notifications' => [
-
- 'throttled' => [
- 'title' => 'Too many login attempts',
- 'body' => 'Please try again in :seconds seconds.',
- ],
-
- ],
-
- ];
|