>
>
> What I actually want to accomplish is rerendering the partial inside the modal once User.save does not work. Please help!!!! :(
For a response to update only a portion of the page instead of the whole page it has to be an ajax post. Rails does have some builtin support for ajax form submission ( http://guides.rubyonrails.org/working_with_javascript_in_rails.html#form-for). You'll have to write some javascript to handle the success/failure cases yourself (in particular the redirect in the success case will no longer do what you want - you have to do the redirect client side)
Fred