@form(routes.Addresses.newAddress()) {
@inputText(addressForm("street"))
@inputText(addressForm("postalCode"))
@inputText(addressForm("city"))
@inputText(addressForm("country"))
<input type="submit" value="Update">
}
I need to add an hidden field "id" in this Edit Form to have the address primary key.
I don't find how to write this hidden field...any idea?
the html code woould be <input type="hidden" value="33" name="id" />
Thanks for your help
Laurent