Plugins - Simplified form helper
Add to favoritesWill add three methods for each form helper - for example, for the text_field helper the following helpers will be generated:
text_field_with_label - same field with a label tag, the text for the label passed as the first argument
text_field_with_error - same field with the error message below, formatted into a div
text_field_with_label_and_error - same field with both the label and the error message, label text passed as the first argument
Such helpers become available for text fields, selects, file inputs and checkboxes. Checkboxes and radios will be wrapped into their labels so that it's easier to tick them on and off.
Allows you to do one-liners to construct the input widget.

It has the tests that it needs, but examples might be nice indeed as well as the support for the form_for.
I believe the label for= should equal the DOM ID of the element, not the NAME. See: http://www.w3schools.com/tags/tag_label.asp
I think it need more examples and tests