[Solved] Get the value of a form in bootstrap


It is not possible to have a form in a form.

Split the forms, and if you want to access an input field outside the form tags use it as this:

<input type="checkbox" name="product" value="1" form="pushForm">

<form id="pushForm" role="form" method="POST" action="/products/add"></form>

solved Get the value of a form in bootstrap