";
// line 5
echo $this->env->getExtension('form')->renderErrors($this->getContext($context, 'form'));
echo "
";
// line 7
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable($this->getAttribute($this->getContext($context, 'form'), "children", array(), "any", false));
foreach ($context['_seq'] as $context['_key'] => $context['child']) {
// line 8
echo " ";
echo $this->env->getExtension('form')->renderRow($this->getContext($context, 'child'));
echo "
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['child'], $context['_parent'], $context['loop']);
$context = array_merge($_parent, array_intersect_key($context, $_parent));
}
// line 12
public function block_field_row($context, array $blocks = array())
{
// line 13
echo "
";
// line 14
echo $this->env->getExtension('form')->renderLabel($this->getContext($context, 'form'));
echo "
";
// line 16
echo $this->env->getExtension('form')->renderWidget($this->getContext($context, 'form'));
echo "
";
// line 18
echo $this->env->getExtension('form')->renderErrors($this->getContext($context, 'form'));
echo "
";
}
// line 24
public function block_field_label($context, array $blocks = array())
{
// line 25
echo "
";
}
public function getTemplateName()
{
return "SensioDistributionBundle::Configurator/form.html.twig";
}
public function isTraitable()
{
return false;
}
}