Reputation: 550
I want to use Google reCaptcha-v3 in my laravel website of a version 5.7 so which article or video I can follow?
Upvotes: 2
Views: 2254
Reputation: 11
Try this in Laravel: https://github.com/AlexStack/Google-Recaptcha-to-any-form
Basic example codes:
Display Google Recaptcha v2 or v3 after a Form_Field_ID:
GoogleRecaptcha::show('SiteKey', 'Form_Field_ID');
Verify it in the backend php:
GoogleRecaptcha::verify('SecretKey');
Upvotes: 1
Reputation: 1763
You can go with this package Larave google captchaV3
Either you can use this package or you can get the code or idea from there
You can go with the official documentation Google captcha V3
Upvotes: 1