Hello, I have two models, let's call them Company and User. A company belongs_to a user and a user has_one company (for now, may has_many latter). Currently I'm using one form to create both a user and a company at the same time, so I basically do: form_for company fields_for user ...form... and then I do: @company = Company.new params[:company] @company.user = User.new params[:user]
The problem is that when I do error reporting with: <%= error_messages_for :company %> I don't get detailed field by field errors of users, only "User is invalid". How can I get detailed user error messages? Thank you.