{% if entry.resourcesPanelMatrix is not null and entry.resourcesPanelMatrix.count() %}
    {% for panel in entry.resourcesPanelMatrix.all() %}

        {% if panel.type == 'resourceFormPanel' %}
            {% include themeDir ~ '/_includes/_panels/_resources/_resource-form-panel' %}
        {% endif %}

        {% if panel.type == 'resourceContactOptionsPanel' %}
            {% include themeDir ~ '/_includes/_panels/_resources/_resource-contact-options-panel' %}
        {% endif %}

        {% if panel.type == 'resourceContentPanel' %}
            {% include themeDir ~ '/_includes/_panels/_resources/_resource-content-panel' %}
        {% endif %}

        {% if panel.type == 'resourceImageContentPanel' %}
            {% include themeDir ~ '/_includes/_panels/_resources/_resource-image-content-panel' %}
        {% endif %}

        {% if panel.type == 'resourceImagePanel' %}
            {% include themeDir ~ '/_includes/_panels/_resources/_resource-image-panel' %}
        {% endif %}

        {% if panel.type == 'resourceGridPanel' %}
            {% include themeDir ~ '/_includes/_panels/_resources/_resource-grid-panel' %}
        {% endif %}

        {% if panel.type == 'resourceVideoPanel' %}
            {% include themeDir ~ '/_includes/_panels/_resources/_resource-video-panel' %}
        {% endif %}

    {% endfor %}
{% endif %}