Categories
-
Recent Posts
Archives
Tag Archives: form_for
Namespace route and form_for method
When you have a namespace in your routes.rb like this: map.namespace :admin do |admin| admin.resources :users end And you like to have a form like this: <% form_for(@user) do |f| %> <%= f.error_messages %> Change the form_for in this and … Continue reading