Hello All
Ive just started using simple form for a project. For one form, I need a dropdown of countries for which I am using the
Carmen rails gem. I tried using the carmen helper for countries:
f.country_select :location, priority: %w(IN), prompt: 'Please select a country'
but this does not render the label for the field.
Using f.country_select :location, priority: %w(IN), prompt: 'Please select a country', label: "Country" doesnt work.
If I use f.input :location, and provide a collection, the priority field is not respected.
Any ideas as to what I should be doing?