Edit Club #{{ club_id }}

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}
{{ form.hidden_tag() }}
{{ form.hockey_club.label(class="form-label") }} {{ form.hockey_club(class="form-control") }} {% if form.hockey_club.errors %}
{% for error in form.hockey_club.errors %} {{ error }} {% endfor %}
{% endif %}
{{ form.logo_url.label(class="form-label") }}
{{ form.logo_url(class="form-control", id="logoUrl", onchange="previewLogo()") }}
{% if form.logo_url.errors %}
{% for error in form.logo_url.errors %} {{ error }} {% endfor %}
{% endif %} Enter the full URL to the club's logo image or use the S3 browser to select from your configured storage.
{{ form.cancel(class="btn btn-secondary me-md-2") }} {{ form.save_club(class="btn btn-primary") }}