On this page
Caution
The documentation you are viewing is for an older version of this component.
Switch to the latest (v3) version.
View Helpers
FormTel
The FormTel
view helper can be used to render an <input type="tel">
HTML5
form input.
Basic usage
use Laminas\Form\Element;
$element = new Element('my-tel');
// Within your view...
echo $this->formTel($element);
Output:
<input type="tel" name="my-tel" value="">