CakePHP\'s FormHelper is how you generate forms when making CakePHP applications. As one might assume, this includes generating input elements, like so:
$thi
Applying the same principle as above to the form->end function as follows:
Form->end(array( 'label' => __('Submit'), 'class' => 'btn', 'div' => array( 'class' => 'control-group', ), 'before' => '', 'after' => '' ));?>
To produce: