{% set layout = userData.role != 'ROLE_DISTRIBUTOR' ? 'base.html.twig' : 'layout-distributors.html.twig' %}
{% extends layout %}
{% block title %}Tourist Auto Multi Quoter - NIS{% endblock %}
{% block stylesheets %}
{{ parent() }}
{{encore_entry_link_tags('mainCSS')}}
{{encore_entry_link_tags('wizardCSS')}}
{{encore_entry_link_tags('TA-multi-quoterCSS')}}
{% endblock %}
{% block body %}
{{ include('./components/full-loader-container.html.twig') }}
{% if userData.role != 'ROLE_DISTRIBUTOR' %}
{{ include("mx/nav_menu.twig",{option:'new_record'}) }}
{% else %}
{{ include("distributors/nav_menu.twig", {option:''}) }}
{% endif %}
{{ include("mx/forms/tourist-auto-multiquoter-component.html.twig",{form:form, insuredName:insuredName, companyName:companyName, salePerson:salePerson, paymentTypeMode:paymentTypeMode}) }}
{{ include('mx/step-template.html') }}
{{ include('mx/modals/incorrect-renewal-alert-modal.twig') }}
{% if distributorType is defined and distributorType == 'Producer US' %}
{{ include('distributors/modals/modal-broker-fee.html.twig') }}
{% endif %}
{% endblock %}
{% block javascripts %}
{% if app.environment != 'dev' %}
{% else %}
{% endif %}
{% if userData.role !='ROLE_DISTRIBUTOR' %}
{% endif %}
{% if userData.role =='ROLE_DISTRIBUTOR' %}
{% endif %}
{% endblock %}