PHPackages                             parsidev/laravel-captcha - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. parsidev/laravel-captcha

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

parsidev/laravel-captcha
========================

Captcha integration for Laravel

v3.0.1(2y ago)030↓86.7%MITPHPPHP ^8.1

Since Jan 25Pushed 2y agoCompare

[ Source](https://github.com/parsidev/laravel-captcha)[ Packagist](https://packagist.org/packages/parsidev/laravel-captcha)[ Docs](https://github.com/parsidev/laravel-captcha)[ RSS](/packages/parsidev-laravel-captcha/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (2)Dependencies (7)Versions (3)Used By (0)

Captcha integration for Laravel
===============================

[](#captcha-integration-for-laravel)

[![Latest Stable Version](https://camo.githubusercontent.com/c8ef9bc4a04285d011c07230c921a0b95609347db7b33181068d40f8e762faca/68747470733a2f2f706f7365722e707567782e6f72672f70617273696465762f6c61726176656c2d636170746368612f762f737461626c65)](https://packagist.org/packages/parsidev/laravel-captcha)[![Total Downloads](https://camo.githubusercontent.com/1bd74bd59e902d56f6653945b0ece325a42fe07c741fef5d3a2b069df0de3753/68747470733a2f2f706f7365722e707567782e6f72672f70617273696465762f6c61726176656c2d636170746368612f646f776e6c6f616473)](https://packagist.org/packages/parsidev/laravel-captcha)[![License](https://camo.githubusercontent.com/d7028e22dc1ca1563748c5b5cee77a88e5bc25e72f4eb10ded427413f6e8ecb0/68747470733a2f2f706f7365722e707567782e6f72672f70617273696465762f6c61726176656c2d636170746368612f6c6963656e7365)](https://packagist.org/packages/parsidev/laravel-captcha)

[![example1](examples/image1.png)](examples/image1.png)[![example2](examples/image2.png)](examples/image2.png)[![example3](examples/image3.png)](examples/image3.png)[![example4](examples/image4.png)](examples/image4.png)[![example5](examples/image5.png)](examples/image5.png)[![example6](examples/image6.png)](examples/image6.png)[![example7](examples/image7.png)](examples/image7.png)[![example8](examples/image8.png)](examples/image8.png)[![example9](examples/image9.png)](examples/image9.png)[![example10](examples/image10.png)](examples/image10.png)[![example11](examples/image11.png)](examples/image11.png)[![example12](examples/image12.png)](examples/image12.png)

Installing Laravel Captcha Composer Package
-------------------------------------------

[](#installing-laravel-captcha-composer-package)

Note: If you do not have Composer yet, you can install it by following the instructions on

#### Step 1. Install package

[](#step-1-install-package)

```
composer require parsidev/laravel-captcha
```

#### Step 2 for Laravel 5.5 and below. Register the Laravel Captcha service provider

[](#step-2-for-laravel-55-and-below-register-the-laravel-captcha-service-provider)

{LARAVEL\_ROOT}/config/app.php:

```
'providers' => [
    ...
    Parsidev\Captcha\Providers\CaptchaServiceProvider::class,
],
```

Using Laravel Captcha
---------------------

[](#using-laravel-captcha)

Generate a Captcha markup in your Controller:

```
