#What is the easiest way to add Captcha to my registration form (with or without Breeze)?
7 messages · Page 1 of 1 (latest)
JS: https://developers.google.com/recaptcha/docs/v3
Laravel Package: https://github.com/josiasmontag/laravel-recaptchav3
@formal scarab Thanks for the tip, yesterday I implemented biscolab/laravel-recaptcha but am still receiving "bot" sign-ups. Do you know if there is a way to "test" the captcha to make sure it is identifying bots correctly? my website is heatware.com/register
Not directly answering your recaptcha question but if you are looking to deter bots you might want to try a honeypot https://github.com/msurguy/Honeypot
You can also view pass/fail stats on your recaptcha via Google's admin UI https://www.google.com/recaptcha/admin
@peak harness @formal scarab I have installed spatie/laravel-honeypot and I can see the honeypart included in the Form DOM. However, when I create a Test that includes that field in the post, the form submission is passing. I would expect it to fail. Any ideas on how I can troubleshoot this? I following the instructions and added the middleware php Route::get('register', [RegisteredUserController::class, 'create']) ->name('register')->middleware(ProtectAgainstSpam::class);
Can you help me determine if the honeypot is working correctly? I'm already getting Bot registrations after pushing the code to Production. My site is https://www.heatware.com/register