9 lines
194 B
Twig
9 lines
194 B
Twig
{% extends "forms/field.html.twig" %}
|
|
|
|
{% block label %}
|
|
{{ label ?: "File" }}
|
|
{% endblock %}
|
|
|
|
{% block input %}
|
|
<input name="{{ name }}" type="file" style="width: 100%"/>
|
|
{% endblock %} |