Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

A simple math captcha for Laravel form validation.

License

Notifications You must be signed in to change notification settings

coppee/laravel-math-captcha

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Very simple math captcha for Laravel

Installation

composer require elic-dev/laravel-math-captcha

Laravel 5

Setup

Add ServiceProvider to the providers array in app/config/app.php.

ElicDev\MathCaptcha\MathCaptchaServiceProvider::class,

Usage

This package only returns the question and the input. You have to position it within your labels and form classes.

{{ app('mathcaptcha')->label() }}
{!! app('mathcaptcha')->input() !!}

Display it wihtin Bootstrap as example:

<div class="form-group">
    <label for="mathgroup">Please solve the following math function: {{ app('mathcaptcha')->label() }}</label>
    {!! app('mathcaptcha')->input(['class' => 'form-control', 'id' => 'mathgroup']) !!}
    @if ($errors->has('mathcaptcha'))
        <span class="help-block">
            <strong>{{ $errors->first('mathcaptcha') }}</strong>
        </span>
    @endif
</div>

Looks like

MathCaptcha Bootstrap

Validation

Add 'mathcaptcha' => 'required|mathcaptcha' to rules array.

$this->validate($request, [
    'mathcaptcha' => 'required|mathcaptcha',
]);

Add corresponding translation string to your lang/validation.php files.

Reset

This package does not generate a new math question for each request. Once the form has been submited without validation erros you can reset the library to force generate a new question.

app('mathcaptcha')->reset();

About

A simple math captcha for Laravel form validation.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%