%= form_for [:admin, geozone] do |f| %>
<%= render "shared/errors", resource: geozone %>
<%= f.text_field :name %>
<%= f.text_field :census_code, hint: t("admin.geozones.geozone.code_help") %>
<%= f.text_field :external_code, hint: t("admin.geozones.geozone.code_help") %>
<%= f.text_field :html_map_coordinates, hint: t("admin.geozones.geozone.coordinates_help") %>
<%= f.text_area :geojson, rows: "10", hint: t("admin.geozones.geozone.geojson_help") %>
<%= f.submit(value: t("admin.geozones.edit.form.submit_button"),
class: "button success") %>
<% end %>