I think the issue is with a little typo you have there: </tbale> instead of </table>. Usually, browsers are really really picky when it comes to tables and they usually hoist out any element that is inappropriate. Also, there is no closing tag for the <form> element.
Try fix that closing tag and let us know what happens. Also, if it does not solve your issue, take a look at the rendered HTML from the element inspector console.
Thanks @kfirba for your reply. I fixed the closing tag, but issue is still persist. Actually the issue is with nesting of form inside of table. I have faced the same issue previously but that time i found some alternate way.
but this time I am unable to find any other way. So if anyone has workaround for nesting form inside a table which does not throw TokenMismatchException, that will be very helpful for me.
@kfirbe Yes, I used the same solution for for one of my previous task.
But for now there is two scenarios.
One for which all the element of the table which will get posted. for this I have added form element at top before table tag.
For one more case I need to post some element of the same above table not the complete table. So I want add this element into another form. something like below.