%= form_with(model: country, local: true) do |form| %>
<% if country.errors.any? %>
<%= pluralize(country.errors.count, "error") %> prohibited this country from being saved:
<% country.errors.full_messages.each do |message| %>
- <%= message %>
<% end %>
<% end %>
<%= form.label :codice %>
<%= form.text_field :codice, id: :country_codice %>
<%= form.label :iso3 %>
<%= form.text_field :iso3, id: :country_iso3 %>
<%= form.label :n %>
<%= form.text_field :n, id: :country_n %>
<%= form.label :nazione %>
<%= form.text_field :nazione, id: :country_nazione %>
<%= form.label :regione %>
<%= form.text_field :regione, id: :country_regione %>
<%= form.label :creg %>
<%= form.text_field :creg, id: :country_creg %>
<%= form.label :provincia %>
<%= form.text_field :provincia, id: :country_provincia %>
<%= form.submit %>
<% end %>