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. | */ 'phone_updated' => 'Phone number updated successfully', 'failed' => 'These credentials do not match our records.', 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 'sms' => 'Activation code', 'registered' => 'Registration successful, please enter the activation code', 'code_expired' => 'The activation code has expired', 'code_invalid' => 'The activation code is invalid', 'code_re_send' => 'Activation code resent', 'code_sent' => 'Activation code sent', 'invalid_token' => 'JWT token is unauthorized for this user', 'expired_token' => 'JWT token has expired', 'incorrect_pass_or_phone' => 'Incorrect password or phone', 'not_authorized' => 'You do not have this permission', 'not_active' => 'This account is inactive, activation code sent', 'incorrect_pass' => 'Incorrect password', 'correct_password' => 'Password verified successfully', 'incorrect_old_pass' => 'The old password is incorrect', 'incorrect_key_or_phone' => 'Check the country code or phone number', 'activated' => 'Your account has been activated successfully', 'password_changed' => 'Password changed successfully', 'blocked' => 'Your account has been blocked by the administration', 'send_activated' => 'Activation code sent successfully', 'unauthenticated' => 'Please log in again', 'code_checked' => 'Code verified, please enter a new password', 'account_deleted' => 'Account deleted successfully', 'account_updated' => 'Account updated successfully', 'same_password' => 'The new password is the same as the current password, please choose a new password', 'done_registration_verification_code_sent_to_phone' => 'Registration successful, activation code sent to your phone', 'send_verification_code_to_phone' => 'Verification code sent to your phone successfully', 'success_login' => 'Logged in successfully', 'phone_required' => 'Phone number is required', "account_waiting_approve" => "Your account is under review by the administration", "registered_successfully_but_account_waiting_approve" => "Your account has been registered successfully but is under review by the administration", "cant_delete_delegate_account" => "The delegate account cannot be deleted because it has current orders or settlement requests", ];
Back to File Manager