{% extends "AppBundle::layout.html.twig" %} {% form_theme form 'AppBundle:Form:fields.html.twig' %} {% block content_title %}添加新的产品{% endblock %} {% block sub_body %}
{% for flashMessage in app.session.flashbag.get('notice') %}
{{ flashMessage }}
{% endfor %}
{{ form_start(form, {'method': 'post', 'attr': {'class': 'app_product_new'}}) }} {{ form_row(form.title)}}
{{ form_label(form.file) }} {% if product.path %}
{% endif %} {{ form_errors(form.file) }} {{ form_widget(form.file, {attr: {class: 'form-control'}}) }}

请选择产品图片

{{ form_label(form.cost) }} {{ form_errors(form.cost) }} {{ form_widget(form.cost, {attr: {class: 'form-control'}}) }}

请添加购买成本的美元价格($)

{{ form_widget(form) }} {{ form_end(form) }}
{% endblock sub_body %}