+ {% if placeholder is defined and placeholder is not none %}
+ {{ _self.get_translated_label(placeholder, translation_domain )}}
+ {% else %}
+ {{ 'dropdown.placeholder'|trans|desc("Choose an option") }}
+ {% endif %}
+
diff --git a/src/bundle/Resources/views/themes/admin/ui/component/multistep_selector/widget.html.twig b/src/bundle/Resources/views/themes/admin/ui/component/multistep_selector/widget.html.twig
new file mode 100644
index 0000000000..584cf2081e
--- /dev/null
+++ b/src/bundle/Resources/views/themes/admin/ui/component/multistep_selector/widget.html.twig
@@ -0,0 +1,28 @@
+
+ {% if title is defined %}
+
{{ title }}
+ {% endif %}
+
+ {% if info is defined %}
+ {% include '@ibexadesign/ui/component/alert/alert.html.twig' with {
+ type: 'info',
+ title: info,
+ } only %}
+ {% endif %}
+
+
+ {% for step in steps %}
+ {% include '@ibexadesign/ui/component/multistep_selector/step_selector.html.twig' with {
+ id: step.id,
+ label: step.label,
+ } %}
+ {% endfor %}
+
+
+ {% if source is defined %}
+ {# TODO: Hide source when everything ready; currently visible for debug purposes #}
+