josiasmontag / laravel-recaptchav3

Laravel package for Google's Recaptcha V3
MIT License
188 stars 37 forks source link

Field g-recaptcha-response is required #15

Open magarrent opened 3 years ago

magarrent commented 3 years ago

I've installed the package following documentation. The recaptcha logo appears at the bottom of the page, but when I'm going to submit the form, it shows me

Field g-recaptcha-response is required

Also in the console appears this:

contact:280 Uncaught ReferenceError: grecaptcha is not defined
    at contact:280
colincameron commented 3 years ago

I had the same issue. What solved it for me was putting {!! RecaptchaV3::initJs() !!} in the tag, instead of the end of the body tag with the rest of my scripts. It needs to be before your form, otherwise, the grecaptcha object isn't defined before it is used in the form JS.