30 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
| 
 | |
|     'profile'               => 'Profile',
 | |
|     'logout'                => 'Logout',
 | |
|     'login'                 => 'Login',
 | |
|     'login_to'              => 'Login to start your session',
 | |
|     'remember_me'           => 'Remember Me',
 | |
|     'forgot_password'       => 'I forgot my password',
 | |
|     'reset_password'        => 'Reset Password',
 | |
|     'enter_email'           => 'Enter Your Email Address',
 | |
|     'current_email'         => 'Current Email',
 | |
|     'reset'                 => 'Reset',
 | |
|     'never'                 => 'never',
 | |
|     'password' => [
 | |
|         'current'           => 'Password',
 | |
|         'current_confirm'   => 'Password Confirmation',
 | |
|         'new'               => 'New Password',
 | |
|         'new_confirm'       => 'New Password Confirmation',
 | |
|     ],
 | |
|     'error' => [
 | |
|         'self_delete'       => 'Error: Can not delete yourself!'
 | |
|     ],
 | |
| 
 | |
|     'failed'                => 'These credentials do not match our records.',
 | |
|     'throttle'              => 'Too many login attempts. Please try again in :seconds seconds.',
 | |
| 
 | |
| ];
 |