{% extends '/layout/admin_layout.html.twig' %} {% block title %}PDF Settings {% endblock %} {% block content %}
{{ form_start(form) }}
{{ form_row(form.fontFamily) }}
{{ form_row(form.fontUrl) }}
{{ form_row(form.fontSize) }}
{{ form_row(form.lineHeight) }}
{{ form_label(form.logo) }} {{ form_widget(form.logo, {'attr': {'class': 'form-control'}}) }} {{ form_errors(form.logo) }} Upload a JPG or PNG image (max 1MB)
{% if logoPath is defined and logoPath %}

Current Logo:

Current Logo
{% endif %}
{{ form_end(form) }}
{% endblock %}