TechBooky AI Assistant
TechBooky AI Assistant
👋 Welcome to TechBooky AI Assistant

I can help with:
🔎 Tech News
🤖 AI Topics
💻 Gadgets
☁️ Cloud
✍️ Guest Posts
📢 Advertising
🔗 Backlinks
📩 Newsletter
  • AI Search
  • Cryptocurrency
  • Earnings
  • Enterprise
  • About TechBooky
  • Submit Article
  • Advertise With TechBooky
  • Contact Us
TechBooky
  • African
  • AI
  • Metaverse
  • Gadgets
Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
  • African
  • AI
  • Metaverse
  • Gadgets
Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
TechBooky
Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
Home Tips

How To Generate Google Recaptcha Code In Laravel?

Contributor by Contributor
July 9, 2019
in Tips
Share on FacebookShare on Twitter
Share this story

Send it to someone who should read it.

f Facebook X X in LinkedIn wa WhatsApp tg Telegram @ Email
In Brief
  • Recaptcha is an automatic captcha recognition service designed for the needs of webmasters and website owners.
  • They use it on websites in order to distinguish real people from spambots.
  • For website designers, developers, admins, such a “pass system” is simply irreplaceable as it helps them to stop the unwanted traffic to the site.

Recaptcha is an automatic captcha recognition service designed for the needs of webmasters and website owners. They use it on websites in order to distinguish real people from spambots. For website designers, developers, admins, such a “pass system” is simply irreplaceable as it helps them to stop the unwanted traffic to the site. These days, the Laravel application is being used by many companies. If you are a Laravel Developer and want to generate Google Recaptcha code in Laravel, let’s follow the recommendations below:

  • Configure Laravel Application

You can install a new Laravel Application by using the following command.

composer create-project –prefer-dist laravel/laravel laravelrecaptcha

  • Install anhskohbo/no-captcha Package 

At first, you need to install anhskohbo/no-captcha Package for Google Recaptcha code. It will help you to generate a reCaptcha code for your application. Navigate to the command line and use the following command line.

composer require anhskohbo/no-captcha

  • Publish Configure File

It supports the auto-discovery feature of Laravel 5.5+. So, to do so, use the following command to Publish Config File-

php artisan vendor:publish –provider=”Anhskohbo\NoCaptcha\NoCaptchaServiceProvider”

  1. Set Google Site Key and Secret Key

Now, you should set Google Site Key and Secret Key in the .env file. If you have no Site Key and Secret Key, generate it from using this link.

Now, you need to open a .env file and add two keys:

NOCAPTCHA_SECRET=xxxx

NOCAPTCHA_SITEKEY=xxxx

  1. Develop One Controller

Use the following code to create one controller-

php artisan make:controller RecaptchaController –resource.

You also need to define validation in the controller file.

//RecaptchaController.php

public function create()

    {

        return view(‘recaptchacreate’);

    }

  public function store(Request $request)

    {

        $request->validate([

            ‘name’ => ‘required’,

            ’email’ => ‘required|email’,

            ‘password’ => ‘required|min:6’,

            ‘g-recaptcha-response’ => ‘required|captcha’

        ]);

        return “success”;

    }

In tore() function, put the validation. In case this process fails, it will show an error.

  1. Define Routes

You must explore the route in routes  >>  web.php file.

//web.php

Route::get(‘recaptchacreate’, ‘RecaptchaController@create’);

Route::post(‘store’, ‘RecaptchaController@store’);

You should define  Two(2) routes in the web.php file. The first route is to display the login page. And, the second route is used to make a post request.

  1. Create One View File

You need to create a file in the resources  >>  views  >>   recaptchacreate.blade.php and place the code in it:

//recaptchacreate.blade.php

<html lang=”en”>

<head>

    <title>reCAPTCHA Code in Laravel</title>

    <link rel=”stylesheet” href=”{{asset(‘css/app.css’)}}”>

    <link href=”https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css” rel=”stylesheet”>  

    <script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js”></script> 

    <script src=”https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js”></script> 

</head>

<body>

<div class=”container”>

      <h2>reCAPTCHA Code in Laravel</h2><br/>

      @if ($errors->any())

      <div class=”alert alert-danger”>

          <ul>

              @foreach ($errors->all() as $error)

                  <li>{{ $error }}</li>

              @endforeach

Also worth reading
Google’s $15B Finland AI Bet Shows Compute Is Now An Energy Race Google’s AI Power Plan Gets A Nuclear Boost Google Brings Gemini Voice Into Gmail And Docs Sergey Brin’s Return Puts Gemini In War-Room Mode Google Escapes Ad Breakup But Must Change Google’s Fervo Deal Shows AI Data Centres Need New Power

          </ul>

      </div><br />

      @endif

      <form method=”post” action=”{{url(‘store’)}}”>

        @csrf

        <div class=”row”>

          <div class=”col-md-4″></div>

          <div class=”form-group col-md-4″>

            <label for=”Name”>Name:</label>

            <input type=”text” class=”form-control” name=”name”>

          </div>

        </div>

        <div class=”row”>

          <div class=”col-md-4″></div>

            <div class=”form-group col-md-4″>

              <label for=”Email”>Email:</label>

              <input type=”text” class=”form-control” name=”email”>

            </div>

          </div>

        <div class=”row”>

          <div class=”col-md-4″></div>

            <div class=”form-group col-md-4″>

              <label for=”Password”>Password:</label>

              <input type=”password” class=”form-control” name=”password”>

            </div>

          </div>

        <div class=”row”>

          <div class=”col-md-4″></div>

          <div class=”form-group col-md-4″>

          <label for=”ReCaptcha”>Recaptcha:</label>

          {!! NoCaptcha::renderJs() !!}

          {!! NoCaptcha::display() !!}

            </div>

        </div>

          <div class=”col-md-4″></div>

          <div class=”form-group col-md-4″>

            <button type=”submit” class=”btn btn-success”>Submit</button>

          </div>

        </div>

      </form>

    </div>

</body>

</script>

</html>

Now, you need to develop the Laravel server by using the below-mentioned command:

PHP artisan serve

If you enter incorrect reCaptcha code, then it will show errors-

Now, you have successfully generated the Google Recaptcha code in Laravel.

Final Words

So, it is clear that Recaptcha is used by website owners to differentiate between bots and human users. You can generate Google Recaptcha code in Larvel in an easy way. Best of Luck!

Author Bio

Jack Calder is a WordPress Developer, associated with Stellen Infotech one of the best Web Development & Digital Marketing Company around the globe. He has a lot of experience in development custom WordPress Themes. He has delivered a numerous range of quality Websites related to WordPress. She has a strong passion for writing useful and insights about WordPress tips and tricks.

Related Reading

More contextual TechBooky stories selected from tags, categories and article context.

  • Search_SocialShare_7gpZ6Zv.width-1300 (2)
    Google Tests AI Overview Opt-Out Tools For Site Owners
  • google_logo_1
    Google Building A Shielded Email Feature to Help…
  • google opal
    Google Integrates Opal Vibe-Coding Tool Into Gemini
  • deepkeep
    New CLI Tool Exposes Blind Spot in AI Agent Security…
  • Frame_2147223720.width-1200.format-webp
    Vibe Coding is Now Available in Google's AI Studio
  • grok
    xAI Open-Sources Grok Build After Coding-Agent…
  • Link Acquisition Strategies
    15 Link Acquisition Strategies That Actually Work in 2025
  • assets_task_01jrfxkvwqeexbx349fmgw9baz_img_0
    Schema Markup in WordPress: A Step-by-Step Guide to…
Keep Reading Smarter

Search TechBooky with AI

Use TechBooky's AI Search to explore the context behind this story and related coverage across the site.

Try AI Search
More On This Topic
Tips
Follow TechBooky

Follow TechBooky for more technology stories and newsroom updates.

f Facebook X X in LinkedIn ig Instagram wa WhatsApp

Tags: codedevelopergooglegoogle recaptchalaravellaravel developerlaravel programmingrecaptcharesearchtipstutorialwebsite
Contributor

Contributor

Posts by contributors. You can send in a post to be reviewed and published to info@techbooky.com

Search TechBooky
Open TechBooky AI Search Try the AI Assistant

BROWSE BY CATEGORIES

Receive top tech news directly in your inbox

subscription from
Loading

Freshly Squeezed

  • Trezor Says 347,000 Users Were Targeted After Brevo Breach September 11, 2026
  • Fidji Simo Joins Nscale Board As AI Cloud IPO Talk Grows September 11, 2026
  • Matt Mullenweg Says He Is Back In Control At Automattic September 11, 2026
  • Meta’s Community Notes Test Raises Latin America Alarm September 11, 2026
  • OpenAI Faces Senate Questions Over Hugging Face AI Breach September 11, 2026
  • FairMoney’s 30M Users Show Nigeria’s Banking Shift September 11, 2026
  • California Puts New Guardrails On AI Chatbots For Kids September 11, 2026
  • Adobe’s AI Growth Still Leaves Wall Street Unsure September 11, 2026
  • OpenAI Brings ChatGPT To Wall Street Analyst Work September 11, 2026
  • Oracle Cloud Revenue Jumps 121% As AI Demand Pays Off September 11, 2026
  • OpenAI Pauses $200 Pro Signups As Astra Hits Compute Limits September 11, 2026
  • Anthropic Says It Foiled Claude Misuse In Cyberattacks And Surveillance September 10, 2026

Browse Archives

September 2026
M T W T F S S
 123456
78910111213
14151617181920
21222324252627
282930  
« Aug    

Quick Links

  • About TechBooky
  • Advertise With TechBooky
  • Contact us
  • Submit Article
  • Privacy Policy
Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
  • African
  • Artificial Intelligence
  • Gadgets
  • Metaverse
  • Tips
  • AI Search
  • About TechBooky
  • Advertise With TechBooky
  • Submit Article
  • Contact us

© 2025 Designed By TechBooky Elite

Discover more from TechBooky

Subscribe now to keep reading and get access to the full archive.

Continue reading

We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.