josiasmontag / laravel-recaptchav3

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

Update RecaptchaV3.php #35

Open shamjaspgs opened 1 year ago

shamjaspgs commented 1 year ago

could u please add this class to input filed on this function so we can call reset recaptcha via following function

function grecaptchaExecute(capclass) {

    grecaptcha.execute('sitekey') }}', {
        action: capclass
    }).
    then(function(token) {

        document.querySelector('.' + capclass).value = token;
    })

}