{% extends "SensioDistributionBundle::Configurator/layout.html.twig" %} {% block title %}Symfony - Configure database{% endblock %} {% block content %} {% form_theme form "SensioDistributionBundle::Configurator/form.html.twig" %}
{% include "SensioDistributionBundle::Configurator/steps.html.twig" with { "index": index, "count": count } %}

Configure your Database

If your website needs a database connection, please configure it here.

{{ form_errors(form) }}
{{ form_row(form.driver) }} {{ form_row(form.host) }} {{ form_row(form.name) }}
{{ form_row(form.user) }} {{ form_row(form.password) }}
{{ form_rest(form) }}
{% endblock %}