79772593

Date: 2025-09-23 12:34:39
Score: 0.5
Natty:
Report link

0

you can use my captcha Library :

Require this package with composer:

composer require hpd/captcha

Usage:

    <img src="{{captcha_get_src()}}" title="Captcha" alt="Captcha">
    <div> {!!captcha_get_img()!!}</div>
/* Validation */
    Route::post('captcha_check', function() {
         $validator = Validator::make($request->all(), [
                'captcha' => 'required|captcha',
            ]);

            if ($validator->fails()) {
                return redirect()->back()
                    ->withErrors($validator)
                    ->withInput();
            }
   
 });

This package also supports API mode.

👉 Read more at the link below

https://github.com/hamid-hpd/captcha

Reasons:
  • Blacklisted phrase (1): the link below
  • Whitelisted phrase (-1.5): you can use
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hamid