%= label_tag "match[opponent_name]", t("matches.opponent_label") %> <%= text_field_tag "match[opponent_name]", match.opponent_name, required: true, placeholder: t("matches.opponent_placeholder") %> <%= label_tag "match[location]", t("matches.location_label") %> <%= text_field_tag "match[location]", match.location, placeholder: t("matches.location_placeholder") %> <%= label_tag "match[scheduled_at]", t("matches.datetime_label") %> <% scheduled_value = match.scheduled_at&.in_time_zone&.strftime("%Y-%m-%dT%H:%M") %> <%= datetime_local_field_tag "match[scheduled_at]", scheduled_value, required: true %>
<%= t("matches.form_hint") %>