{% set form_id = form_id ? form_id : 'blueprints' %}
{% set scope = scope ?: 'data.' %}

<form id="{{ form_id }}" method="post" data-grav-form="{{ form_id }}" data-grav-keepalive="true">
    {% for field in blueprints.fields %}
        {% if field.type %}
            {% set value = field.name ? data.value(field.name) : data.toArray %}
            <div class="block block-{{ field.type }}">
                {% if field.type == 'section' %}
                    {% include ["forms/fields/#{field.type}/#{field.type}.html.twig", 'forms/fields/text/text.html.twig'] %}
                {% else %}
                    {% include ["forms/fields/#{field.type}/#{field.type}.html.twig", 'forms/fields/text/text.html.twig'] %}
                {% endif %}
            </div>
        {% endif %}
    {% endfor %}

    <input type="hidden" name="task" value="{{ form_id }}"/>
    <div class="button-bar">
        <button class="button primary">{{ "PLUGIN_ADMIN.CONTINUE"|tu }}</button>
    </div>

    {{ nonce_field('admin-form', 'admin-nonce')|raw }}

</form>
