© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
11 replies
itsmejyv

how to add recaptcha in filament login form?

I don't know where to put the script from google recaptcha in login form of filament, is there any way to integrate it there?
Solution
Here's how I did it for future newbie like me:

Install first the dependent package:
composer require anhskohbo/no-captcha
composer require anhskohbo/no-captcha


Add these two to your .env and paste your google site and secret key there
NOCAPTCHA_SECRET=secret-key
NOCAPTCHA_SITEKEY=site-key
NOCAPTCHA_SECRET=secret-key
NOCAPTCHA_SITEKEY=site-key


Install this for filament:
composer require abanoubnassem/filament-grecaptcha-field
composer require abanoubnassem/filament-grecaptcha-field


Then publish it (required):
php artisan vendor:publish --provider="Anhskohbo\NoCaptcha\NoCaptchaServiceProvider"
php artisan vendor:publish --provider="Anhskohbo\NoCaptcha\NoCaptchaServiceProvider"


add this two code, in login.blade.php inside of the form (if you're using the built-in filament login)
 {!! NoCaptcha::renderJs() !!}
{!! NoCaptcha::display() !!}
 {!! NoCaptcha::renderJs() !!}
{!! NoCaptcha::display() !!}


Then modify it and follow other instruction after adding it.
https://github.com/anhskohbo/no-captcha
GitHub
GitHub - anhskohbo/no-captcha: No CAPTCHA reCAPTCHA For Laravel.
No CAPTCHA reCAPTCHA For Laravel. Contribute to anhskohbo/no-captcha development by creating an account on GitHub.
GitHub - anhskohbo/no-captcha: No CAPTCHA reCAPTCHA For Laravel.
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Add filament form in Livewire component
FilamentFFilament / ❓┊help
2y ago
Filament v2 Form Builder: How to add button in Repeater ?
FilamentFFilament / ❓┊help
2y ago
How to filament table in filament form in v3?
FilamentFFilament / ❓┊help
3y ago
Add submit button to filament form in custom page
FilamentFFilament / ❓┊help
2y ago