CakePHP\'s FormHelper is how you generate forms when making CakePHP applications. As one might assume, this includes generating input elements, like so:
$thi
I had the same problem using slywalker / cakephp-plugin-boost_cake, I open a ticket and he had it fix in a few hours, he updated to 1,03 and told me to use it like this
Form->input('email', array(
'label' => array(
'text' => __('Email:'),
),
'beforeInput' => '',
'afterInput' => ''
)); ?>
I hope it helps some one else too