By default, when I’m calling submit button in CakePHP View like this:
echo $this->Form->end('Save');
The above will output:
<div class="submit">
<input type="submit" value="Save"/>
</div>
Bot I wan’t it to be only this:
<input type="submit" class="submit" value="Save"/>
I’ve searching the manual , but did not found anything interesting.
Try
Alternatively
For more, see this API entry