Integrating Google re-Captcha In Laravel

Google reCAPTCHA is a powerful tool for protecting websites from spam and abuse. Integrating reCAPTCHA into your Laravel application adds an additional layer of security by requiring users to verify that they are not bots. In this guide, we’ll walk through the process of integrating Google reCAPTCHA into a Laravel application.

Step 1: Sign Up for reCAPTCHA

The first step is to sign up for Google reCAPTCHA if you haven’t already. Visit the reCAPTCHA website (https://www.google.com/recaptcha) and sign in with your Google account. Once logged in, register your website/domain to obtain the necessary keys for integration.

Step 2: Get Site and Secret Keys: After registering your website/domain, you’ll receive two keys: Site key and Secret key. These keys are essential for integrating reCAPTCHA into your Laravel application. Keep them secure and don’t share them publicly.

Step 3: Install Google reCAPTCHA Package: In your Laravel application directory, install the “anhskohbo/no-captcha” package using Composer. This package provides a simple way to integrate reCAPTCHA into Laravel forms.

composer require anhskohbo/no-captcha

Step 4: Configure .env File: Add your reCAPTCHA site key and secret key to the .env file of your Laravel application.

NOCAPTCHA_SECRET=your-secret-key
NOCAPTCHA_SITEKEY=your-site-key

Step 5: Add reCAPTCHA to Laravel Forms

 <div class="form-group{{ $errors->has('g-recaptcha-response') ? ' has-error' : '' }}">
{!! app('captcha')->display() !!}
 @if ($errors->has('g-recaptcha-response'))
<span class="help-block">
<strong class="tst4 btn btn-danger">{{ $errors->first('g-recaptcha-response') }}</strong>
</span>
@endif
</div>
public function login(Request $request)
    {
        $validator = Validator::make($request->all(), [

            'email' => 'required|string|email|max:255|unique:users',
            'password' => 'required|string|min:8|confirmed',
            'g-recaptcha-response' => 'required|captcha',
        ]);

      
    }
}

Output:-

Without clicking on recaptcha

Hopefully, It will help you …!!!

Related Posts

The Complete SEO Playbook for AI Guest Post Generation and Publishing

Introduction Search engine optimization relies heavily on authority, relevance, and trust. While search algorithms continually evolve, securing high-quality backlinks through strategic content placement remains a foundational ranking…

Read More

Top Digital Marketing Workflow Management Tools for Agencies

Introduction Managing a modern digital marketing stack often feels like juggling dozens of disconnected software subscriptions. Marketing managers, agency owners, and SEO specialists frequently find themselves jumping…

Read More

AI Prompt Management Tools: From Basic Prompts to High-Value Digital Assets

Generative artificial intelligence has fundamentally altered how modern enterprises, creative teams, and technical engineers operate. However, as organizations increase their reliance on large language models (LLMs), a…

Read More

Automated Payment Management Software for Modern Enterprises

Finance operations form the backbone of every enterprise, yet many organizations still struggle with fragmented billing tools, delayed collections, and manual reconciliation. Relying on spreadsheets and disconnected…

Read More

The Complete Guide to Choosing the Best Vehicle Rental Management Software

INTRODUCTION Managing a vehicle rental business manually through spreadsheets, paper ledgers, or messaging apps creates significant operational friction. Rental agency owners face recurring challenges including double bookings,…

Read More

The Ultimate Guide to Predictive Alerts and Data Observability

Introduction In modern data-driven enterprises, data pipelines serve as the central circulatory system of business intelligence, operational analytics, machine learning platforms, and executive decision-making. However, as data…

Read More
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x