country select gem

<%= f.select :country, options_for_select(["CA", "US"]) %>

Why don’t you put the label on the previous line and the validation in the model?

I used this instead…

<%= f.input :country, :collection => %w[Canada USA], required: true %>

``