When verifying the request, the error "incorrect-captcha-sol" is returned. I tried recreating recaptcha keys, different connection methods, clearing browser cookies, opening the site through a different browser.
Steps To Reproduce:
For example FeedbackController.php file:
public function post(Request $request)
{
$captcha = new NoCaptchaV3(
'RECAPTCHAV3_SECRET',
'RECAPTCHAV3_SITEKEY'
);
if ($request->all() && $request['g-recaptcha-response']) {
$response = $captcha->verify($request['g-recaptcha-response'] ?? null);
if ($response->isSuccess()) {
...
} else {
dd($response);
}
}
}
Description:
When verifying the request, the error "incorrect-captcha-sol" is returned. I tried recreating recaptcha keys, different connection methods, clearing browser cookies, opening the site through a different browser.
Steps To Reproduce:
For example FeedbackController.php file:
feedback.blade.php:
main.js: