<%= @title %>
  
  <.form
    let={f}
    for={@changeset}
    id="shot-group-form"
    class="grid grid-cols-3 justify-center items-center space-y-4"
    phx-target={@myself}
    phx-change="validate"
    phx-submit="save"
  >
    <%= unless @changeset.valid? do %>
      
        <%= changeset_errors(@changeset) %>
      
    <% end %>
    <%= label(f, :count, gettext("Shots fired"), class: "title text-lg text-primary-500") %>
    <%= number_input(f, :count,
      min: 1,
      max: @shot_group.count + @ammo_group.count,
      class: "input input-primary col-span-2"
    ) %>
    <%= error_tag(f, :count, "col-span-3") %>
    <%= label(f, :notes, gettext("Notes"), class: "title text-lg text-primary-500") %>
    <%= textarea(f, :notes,
      class: "input input-primary col-span-2",
      phx_hook: "MaintainAttrs"
    ) %>
    <%= error_tag(f, :notes, "col-span-3") %>
    <%= label(f, :date, gettext("Date (UTC)"), class: "title text-lg text-primary-500") %>
    <%= date_input(f, :date, class: "input input-primary col-span-2") %>
    <%= error_tag(f, :notes, "col-span-3") %>
    <%= submit(dgettext("actions", "Save"),
      class: "mx-auto btn btn-primary col-span-3",
      phx_disable_with: dgettext("prompts", "Saving...")
    ) %>