I'm trying to render a form with action POST using play 2.10
@form(action = routes.Application.sentiment, args = 'id -> "helloform", 'method -> "POST")
The output for this is (I verified this in play console)
<form action="/sentiment" method="GET" id="helloform" method="POST">
The net effect of this in a browser is it ends up ignoring the second method attribute. What am I doing wrong? How do I override the default form method?