I know Simple Form plugin achieves it (unfortunately I don't wanna use simple form).
If input field has errors associated with it, it is wrapped in div with .fields_with_errors class. Also using form_for helper default/current values are all set automatically.
Here's text_field helper:
def text_field(object_name, method, options = {})
How do I check for errors if all I got is object_name?
I tried @object, instance_eval, none have seemed to work.