Generating Captcha in Laravel

A detailed guide on how to create a Captcha in Laravel to protect forms from spam and verify user authenticity. This tutorial will help you integrate Captcha into your Laravel project with ease.

This article demonstrates how to use the mews/captcha library to generate a Captcha in Laravel, enhancing form security by verifying user input through a protective code.

Laravel Code

Step 1: Install mews/captcha library

Run the following command:

composer require mews/captcha

Step 2: Configure the library in Laravel

  • Add the service provider and alias to config/app.php:
'providers' => [
    Mews\Captcha\CaptchaServiceProvider::class,
],

'aliases' => [
    'Captcha' => Mews\Captcha\Facades\Captcha::class,
],
  • Publish the configuration:
php artisan vendor:publish --provider="Mews\Captcha\CaptchaServiceProvider"

Step 3: Using Captcha in your form

In web.php:

use Illuminate\Support\Facades\Route;

Route::get('form', function () {
    return view('form');
});

Route::post('submit', function () {
    request()->validate([
        'captcha' => 'required|captcha'
    ]);

    return 'Captcha is correct!';
});

In resources/views/form.blade.php:

<!DOCTYPE html>
<html>
<head>
    <title>Captcha Form</title>
</head>
<body>
    <form action="/submit" method="POST">
        @csrf
        <p><input type="text" name="captcha" placeholder="Enter Captcha"></p>
        <p>{!! captcha_img() !!}</p>
        <p><button type="submit">Submit</button></p>
    </form>
</body>
</html>

Detailed explanation:

  1. The mews/captcha library is installed to generate Captcha in Laravel.
  2. CaptchaServiceProvider and Captcha alias are registered in config/app.php.
  3. captcha_img() in form.blade.php displays the Captcha image.
  4. Upon form submission, request()->validate() checks the captcha field.

System Requirements:

  • PHP 7.3 or newer
  • Laravel 8.x or newer
  • Composer

How to install the libraries needed to run the Laravel code above:

Use Composer to install the mews/captcha library:

composer require mews/captcha

Tips:

  • Always use Captcha for registration or login forms to prevent spam.
  • Regularly update and verify the Captcha code to maintain security.
Tags: Laravel, Captcha


Related

All Ways to DELETE Data from MySQL Database in Laravel

A comprehensive guide on various methods to delete data from a MySQL database in Laravel, including Eloquent, Query Builder, and how to implement soft deletes.
How to use the where function in Laravel

A detailed guide on using the `where` function in Laravel to perform effective and flexible database queries.
Guide to implementing Apple ID login in Laravel

A detailed guide on how to integrate Apple ID login into a Laravel application using OAuth2. Learn how to configure your application to connect with Apple services and handle user login via Apple ID.
How to pass Authentication Header Token when POSTing data to an API in Laravel

A guide on how to pass an Authentication Header Token when POSTing data to an API in Laravel. The article covers how to use Laravel's built-in `HTTP Client` to send a Token along with the data to the API.
How to convert a Markdown string to HTML using Laravel

A guide on how to convert a Markdown string to HTML in Laravel using the `league/commonmark` library, making the conversion process simple and effective.
Read Excel Content Using Laravel

A detailed guide on reading Excel file content in Laravel using the Laravel Excel package. This article provides sample code, a step-by-step explanation, and instructions for installing the necessary package.
How to use nested Where functions in Laravel

This article summarizes the ways to use nested `where` functions in Laravel, helping readers understand how to construct complex queries in their applications.
JSON Web Token (JWT) Authentication with Laravel

Step-by-step guide to implementing API authentication using JSON Web Token (JWT) in Laravel. This article covers installation and configuration to secure your web application using token-based authentication.
How to upload multiple images in Laravel

A detailed guide on how to upload multiple images in Laravel, including setting up the upload form, processing data on the server, and storing images.
All ways to SELECT data from a MySQL database in Laravel

Explore various methods to select data from a MySQL database in Laravel, including using Eloquent ORM and Query Builder.

main.add_cart_success