On this page

View Helpers

FormCaptcha

Laminas\Form\View\Helper\FormCaptcha will render a CAPTCHA as defined in a Captcha element.

Basic usage

use Laminas\Captcha;
use Laminas\Form\Element;

$captcha = new Element\Captcha('captcha');
$captcha->setCaptcha(new Captcha\Dumb());
$captcha->setLabel('Please verify you are human');

// Within your view...

echo $this->formCaptcha($captcha);