Sandeep
Sandeep

Reputation: 550

Use Google reCaptcha v3 in Laravel 5.7

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

Answers (2)

Alex
Alex

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

bhavinjr
bhavinjr

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

Related Questions