Viewing file: auth.php (1.8 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages that we need to display to the user. You are free to modify
| these language lines according to your application's requirements.
|
*/
'failed' => 'These credentials do not match our records.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
'terms_condition' => 'By clicking Sign Up you are agree to our :terms',
'welcome'=>'Welcome To :app_name !',
'create'=>'Create account with',
'sign_account'=>'Already have an account?',
'register_account'=>'Register your account',
'form'=>[
'button'=>[
'sign_in'=>'Sign In',
'sign_up'=>'Sign Up',
'reset'=>'Reset',
'submit'=>'Submit',
],
'forget_password'=>'I forgot my password',
'registration'=>'Need a trial?',
'sign_in'=>'Already have account?',
],
'login'=>[
'title'=>'Sign in to start your session',
'form'=>[
'email'=>'Email',
'password'=>'Password',
'remember_me'=>'Remember me',
'copy'=>'Copy',
'email_placeholder'=>'Enter your email address',
'password_placeholder'=>'Enter your password address'
]
],
'registration'=>[
'title'=>'Sign up to get start',
'form'=>[
'first_name'=>'First name',
'last_name'=>'Last name',
'email'=>'Email',
'password'=>'Password',
]
],
];
|