This plugin is built on top of anhskohbo/no-captcha package.
You can install the package via composer:
composer require abanoubnassem/filament-grecaptcha-field
Since the package depends on anhskohbo/no-captcha package. You may publish the configuration by running:
php artisan vendor:publish --provider="Anhskohbo\NoCaptcha\NoCaptchaServiceProvider"
Add NOCAPTCHA_SECRET and NOCAPTCHA_SITEKEY in .env file :
NOCAPTCHA_SECRET=secret-keyNOCAPTCHA_SITEKEY=site-key
(You can obtain them from here)
use AbanoubNassem\FilamentGRecaptchaField\Forms\Components\GRecaptcha; // admin panel    public static function form(Form $form): Form    {        return $form->schema([                    ...                    GRecaptcha::make('captcha')                ]);     } //forntend-forms    public $captcha = ''; // must be initialized    protected function getFormSchema(): array    {        return [            ....             GRecaptcha::make('captcha')        ];    }
Please see CHANGELOG for more information on what has changed recently.
If you discover any security related issues, please create an issue.
The MIT License (MIT). Please see License File for more information.