Skip to content

Instantly share code, notes, and snippets.

View sylvacoin's full-sized avatar
🦾

Hillary Sylvester H sylvacoin

🦾
View GitHub Profile
@estorgio
estorgio / recaptcha_laravel_9.md
Created November 8, 2022 02:58
How to setup reCAPTCHA in Laravel 9.

How to setup reCAPTCHA in Laravel 9.

  • Create config/recaptcha.php configuration file.
    <?php
    return [
        'site_key' => env('RECAPTCHA_SITE_KEY', null),
        'secret_key' => env('RECAPTCHA_SECRET_KEY', null),
        'theme' => env('RECAPTCHA_THEME', 'light'),
    ];