{% extends 'admin/layout.html.twig' %} {% block title %}{{ is_new ? 'New' : 'Edit' }} Product - KitscoApp{% endblock %} {% block page_title %}{{ is_new ? 'New Product' : 'Edit: ' ~ product.name }}{% endblock %} {% block content %}

Product Information

{{ form_start(form, {attr: {enctype: 'multipart/form-data'}}) }}
{{ form_row(form.name) }}
{{ form_row(form.sku) }}
{{ form_row(form.description) }}
{% set category_options = [] %} {% for choice in form.category.vars.choices %} {% set category_options = category_options|merge([{value: choice.value, label: choice.label}]) %} {% endfor %} {% include 'components/_select_dropdown.html.twig' with { id: form.category.vars.id, name: form.category.vars.full_name, value: form.category.vars.value, label: 'Product Category', options: category_options, placeholder: 'Select category...', required: true } %} {% do form.category.setRendered %}
{{ form_row(form.unitPrice) }}
{{ form_row(form.isActive) }}
{{ form_row(form.showOnWebsite) }}
{# Product image upload with drag & drop #}
{# Drop zone prompt #}

Drag & drop your image here

or browse to upload

JPEG, PNG, or WebP. Max 5MB

{# Loading indicator #} {# Preview container #}
Preview

{{ product.imagePath ? 'Current image' : '' }}

{% if product.imagePath %} View | {% endif %}
{# Error message #} {# Hidden file input #} {{ form_widget(form.imageFile, {attr: {class: 'sr-only absolute', 'data-file-dropzone-target': 'input'}}) }}
{{ form_errors(form.imageFile) }} {% do form.imageFile.setRendered %}
{% if not is_new %} {% else %}
{% endif %}
Cancel
{{ form_end(form) }} {% if not is_new %} {% endif %}
{% endblock %}