Ok.. I found the solution. getAttrib() function we can use to get name and other attribute of the form which we have set in model.
HTML Code:
<form id="<?php echo $this->form->getAttrib('name'); ?>" enctype="<?php echo $this->form->getAttrib('enctype'); ?>" action="<?php echo $this->url(array('action'=>'edit')); ?>" method="post" >
Cheers.
