<% content_for :title, "Location name for #{@location.postcode}" %>

<% content_for :before_content do %>
  <%= govuk_back_link(
    text: "Back",
    href: scheme_location_path(@scheme, @location),
  ) %>
<% end %>

<%= form_for(@location, method: :patch, url: scheme_location_path(scheme_id: @scheme.id, id: @location.id)) do |f| %>
  <div class="govuk-grid-row">
    <div class="govuk-grid-column-two-thirds">
      <%= f.govuk_error_summary %>

      <%= render partial: "organisations/headings", locals: { main: "Location name for #{@location.postcode}", sub: @scheme.service_name } %>

      <%= f.govuk_text_field :name,
                             label: { hidden: true },
                             hint: { text: "This is how you refer to this location within your organisation" } %>

      <%= f.hidden_field :page, value: "edit-name" %>

      <%= f.govuk_submit "Save and continue" %>
    </div>
  </div>
<% end %>