fix otp issue and removed text from otp page

This commit is contained in:
Ritikesh yadav
2024-04-04 11:13:45 +05:30
parent 22425f1a11
commit c78ac8f82b
4 changed files with 4 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ class AdminLoginController extends Controller
if (Hash::check($password, $userPassword)) {
session()->put('email', $email);
// $this->otpMail($email);
$this->otpMail($email);
return response()->json(['status' => 200, 'message' => 'OTP has been send on your mail!']);
};