Edit File: auth.php
<?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.', 'sms' => 'Activation code', 'registered' => 'Profile created successfully', 'activated' => 'account activated successfully', 'code_expired' => 'Code expired', 'code_invalid' => 'Code invalid', 'already_activated' => 'Account already activated', 'code_re_send' => 'Code resend', 'new_phone_code_sent' => 'Code sent to new phone number', 'phone_ownership' => 'This phone number is belong to you', 'invalid_token' => 'jwt token invalid', 'expired_token' => 'jwt token expired', 'not_authorized' => 'You are not authorized', 'incorrect_pass_or_phone' => 'Incorrect password', 'not_active' => 'Account needs activation', 'phone_code_sent' => 'Code sent to phone number', 'incorrect_pass' => 'Incorrect password', 'incorrect_old_pass' => 'Incorrect Old password', 'incorrect_key_or_phone' => 'Check the phone number or email', 'unauthenticated' => 'Please login again', 'blocked' => 'blocked', 'account_deleted' => 'Account Deleted successfully', 'location_updated' => 'Location updated successfully', 'profile_completed' => 'Profile completed successfully', 'interests_added' => 'Interests added successfully', 'interest_option_id_required' => 'Please complete your interests', 'need_subscription' => 'Please subscribe to a package first', 'registered_code_sent' => 'Registered succesfully and code sent', 'logined_code_sent' => 'Login succesfully and code sent', 'not_your_phone' => 'This phone number is not belong to you', ];
Back to File Manager