laravel-google-captcha icon indicating copy to clipboard operation
laravel-google-captcha copied to clipboard

Google captcha for Laravel 5, Laravel 6, Laravel 7, Laravel 8, Laravel 9 and Laravel 10, support multiple captcha on page

Results 8 laravel-google-captcha issues
Sort by recently updated
recently updated
newest added

Hello, I followed all the steps in readme.md, but captcha validation is not running, could you help me or explain to me how validation works? I'm new to laravel, so...

Hello, I would like to add multiple captcha on multiple form but on the same page. The problem is that the captcha JS file will be loaded X times as...

Laravel: 5.6 PHP: 7.2 "name": "buzz/laravel-google-captcha", "version": "v2.1.10", file_get_contents(): https:// wrapper is disabled in the server configuration by allow_url_fopen=0 ```[2019-01-23 10:05:41] production.ERROR: file_get_contents(): https:// wrapper is disabled in the server...

I used of this rule to validate recaptcha: ```php $validate = Validator::make($request->all(), [ 'g-recaptcha-response' => 'required|captcha', 'name' => 'required', ]); ``` But this way always return fail, even when i...

Hi, I used your plugin, it perfect but when i change language, it sometime still wrong. i config my language by vi, in both file config/captcha.php and change option in...

I think the problem is in `Buzz\LaravelGoogleCaptcha\CaptchaServiceProvider:boot()` method, you should not force using APP key if it is null.

I am running Dusk automation tests and none of this seem to work: ``` public function createApplication(): Application { ... $app['validator']->extend('captcha', function() { fwrite(STDOUT, print_r("Bypassing captcha validation and returning explicit...