How did I set the form name if I use in my view
<?php echo $controller->renderPartial('form') ?>
Hi JMontoya,
Have a look at the documentation of the Akelos classe FormTagHelper
Here a sample code for the template form
<?php echo $form_tag_helper->start_form_tag(array('action'=>'edit', 'id' => $author->getId())) ?>
<div class="form">
<?php echo $controller->renderPartial('form') ?>
</div>
<div id="operations"> save() ?> cancel()?> </div>
<?php echo $form_tag_helper->end_form_tag() ?>
1 to 2 of 2