We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Syntax: textarea(string $name,string $default='',array $args=array(),string $tpl=null)
textarea(string $name,string $default='',array $args=array(),string $tpl=null)
Simple example:
<?php print \Formbuilder\Form::textarea('bio'); ?>
More beefy:
<?php print \Formbuilder\Form::textarea('saga','Tell your tale here...', array('rows'=>'60','cols'=>'80') ); ?>
Textarea fields support a placeholders for "rows" and "cols".
Home