I want to have a form_for @user, but post to a custom action in the users controller.
form_for @user
How can I do this?
new syntax
<%= form_for :user, url: custom_user_path, method: :post do |f|%> <%end%>