I have a form that is using form_tag and not sure how to use it with the simple_form gem. This is how my form looks:
form_tag
<%= form_tag create_mult
You can avoid use of
params[:signin][:email]
using
<%= f.input :email, input_html: { name: "email" } %>
so
params[:email]