Reputation: 394
how is it possible to add a description to a form field made with formtastic?
I tried this:
f.input :first_name, description: 'Please insert your first_name'
The description should appear right under the form field.
Thanks
Upvotes: 2
Views: 378
Reputation: 1848
There is no description option for formtastic fields, but you can use :hint option instead
f.input :first_name, :hint => 'Please insert your first_name'
Upvotes: 2