How to overwrite the default label generated by the form helper?

45 Views Asked by At

How can override the default label of cakephp replacing it on my desire label. my VIEW code in cakePHP is this:

echo $this->Form->create('Add');
echo "<h2>Email</h2>"; //Email
echo $this->Form->input('email'); //email
echo $this->Form->submit('submit');
echo $this->Form->end();
1

There are 1 best solutions below

0
On
echo $this->Form->input('email', array('label' => 'Your Label'));