<?php

use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\CoreExtension;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
use Twig\TemplateWrapper;

/* @AdminLTE/layout/form-theme-horizontal.html.twig */
class __TwigTemplate_bf3e6df87a7307e5dac0d56da760620c extends Template
{
    private Source $source;
    /**
     * @var array<string, Template>
     */
    private array $macros = [];

    public function __construct(Environment $env)
    {
        parent::__construct($env);

        $this->source = $this->getSourceContext();

        $this->blocks = [
            'form_errors' => [$this, 'block_form_errors'],
            'widget_attributes' => [$this, 'block_widget_attributes'],
            'choice_widget_expanded' => [$this, 'block_choice_widget_expanded'],
            'choice_widget_collapsed' => [$this, 'block_choice_widget_collapsed'],
            'checkbox_widget' => [$this, 'block_checkbox_widget'],
            'radio_widget' => [$this, 'block_radio_widget'],
            'date_widget' => [$this, 'block_date_widget'],
            'time_widget' => [$this, 'block_time_widget'],
            'datetime_widget' => [$this, 'block_datetime_widget'],
            'email_widget' => [$this, 'block_email_widget'],
            'password_widget' => [$this, 'block_password_widget'],
            'tel_widget' => [$this, 'block_tel_widget'],
            'url_widget' => [$this, 'block_url_widget'],
        ];
    }

    protected function doGetParent(array $context): bool|string|Template|TemplateWrapper
    {
        // line 1
        return "bootstrap_3_horizontal_layout.html.twig";
    }

    protected function doDisplay(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        $this->parent = $this->load("bootstrap_3_horizontal_layout.html.twig", 1);
        yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
    }

    // line 8
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_form_errors(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 9
        yield "    ";
        $_v0 = ('' === $tmp = \Twig\Extension\CoreExtension::captureOutput((function () use (&$context, $macros, $blocks) {
            // line 10
            yield "        ";
            if ((Twig\Extension\CoreExtension::length($this->env->getCharset(), ($context["errors"] ?? null)) > 0)) {
                // line 11
                yield "            <ul class=\"list-unstyled\">
                ";
                // line 12
                $context['_parent'] = $context;
                $context['_seq'] = CoreExtension::ensureTraversable(($context["errors"] ?? null));
                foreach ($context['_seq'] as $context["_key"] => $context["error"]) {
                    // line 13
                    yield "                    <li class=\"text-danger\">";
                    yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, $context["error"], "message", [], "any", false, false, false, 13), "html", null, true);
                    yield "</li>
                ";
                }
                $_parent = $context['_parent'];
                unset($context['_seq'], $context['_key'], $context['error'], $context['_parent']);
                $context = array_intersect_key($context, $_parent) + $_parent;
                // line 15
                yield "            </ul>
        ";
            }
            // line 17
            yield "    ";
            yield from [];
        })())) ? '' : new Markup($tmp, $this->env->getCharset());
        // line 9
        yield Twig\Extension\CoreExtension::spaceless($_v0);
        yield from [];
    }

    // line 20
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_widget_attributes(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 21
        yield "    ";
        $context["types"] = CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "vars", [], "any", false, false, false, 21), "block_prefixes", [], "any", false, false, false, 21);
        // line 22
        yield "     ";
        $context["_class"] = "";
        // line 23
        yield "    ";
        if (CoreExtension::inFilter("checkbox", ($context["types"] ?? null))) {
            // line 24
            yield "        ";
            $context["_class"] = " checkbox";
            // line 25
            yield "    ";
        } elseif (CoreExtension::inFilter("radio", ($context["types"] ?? null))) {
            // line 26
            yield "        ";
            $context["_class"] = " radio";
            // line 27
            yield "    ";
        }
        // line 28
        yield "    ";
        // line 31
        yield "
    ";
        // line 32
        if (CoreExtension::getAttribute($this->env, $this->source, ($context["attr"] ?? null), "class", [], "any", true, true, false, 32)) {
            // line 33
            yield "        ";
            $context["class"] = (CoreExtension::getAttribute($this->env, $this->source, ($context["attr"] ?? null), "class", [], "any", false, false, false, 33) . ($context["_class"] ?? null));
            // line 34
            yield "    ";
        } else {
            // line 35
            yield "        ";
            $context["class"] = ($context["_class"] ?? null);
            // line 36
            yield "    ";
        }
        // line 37
        yield "    ";
        if ((!CoreExtension::inFilter("checkbox", ($context["types"] ?? null)) && !CoreExtension::inFilter("form-control", ($context["class"] ?? null)))) {
            // line 38
            yield "        ";
            $context["class"] = (($context["class"] ?? null) . " form-control");
            // line 39
            yield "    ";
        }
        // line 40
        yield "    ";
        $context["attr"] = Twig\Extension\CoreExtension::merge(($context["attr"] ?? null), ["class" => ($context["class"] ?? null)]);
        // line 41
        yield "    ";
        yield from $this->yieldParentBlock("widget_attributes", $context, $blocks);
        yield "
";
        yield from [];
    }

    // line 44
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_choice_widget_expanded(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 45
        yield "    ";
        $_v1 = ('' === $tmp = \Twig\Extension\CoreExtension::captureOutput((function () use (&$context, $macros, $blocks) {
            // line 46
            yield "        <div ";
            yield from             $this->unwrap()->yieldBlock("widget_container_attributes", $context, $blocks);
            yield ">
            ";
            // line 47
            $context['_parent'] = $context;
            $context['_seq'] = CoreExtension::ensureTraversable(($context["form"] ?? null));
            foreach ($context['_seq'] as $context["_key"] => $context["child"]) {
                // line 48
                yield "                ";
                yield $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock($context["child"], 'widget');
                yield "
            ";
            }
            $_parent = $context['_parent'];
            unset($context['_seq'], $context['_key'], $context['child'], $context['_parent']);
            $context = array_intersect_key($context, $_parent) + $_parent;
            // line 50
            yield "        </div>
    ";
            yield from [];
        })())) ? '' : new Markup($tmp, $this->env->getCharset());
        // line 45
        yield Twig\Extension\CoreExtension::spaceless($_v1);
        yield from [];
    }

    // line 54
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_choice_widget_collapsed(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 55
        yield "    ";
        $context['_parent'] = $context;
        $context['_seq'] = CoreExtension::ensureTraversable(($context["attr"] ?? null));
        foreach ($context['_seq'] as $context["att"] => $context["val"]) {
            // line 56
            yield "        ";
            if (($context["att"] == "class")) {
                // line 57
                yield "            ";
                $context["att"] = ($context["val"] . " form-control");
                // line 58
                yield "        ";
            }
            // line 59
            yield "    ";
        }
        $_parent = $context['_parent'];
        unset($context['_seq'], $context['att'], $context['val'], $context['_parent']);
        $context = array_intersect_key($context, $_parent) + $_parent;
        // line 60
        yield "
    ";
        // line 61
        yield from $this->yieldParentBlock("choice_widget_collapsed", $context, $blocks);
        yield "
";
        yield from [];
    }

    // line 64
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_checkbox_widget(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 65
        yield "    <div class=\"checkbox\">
        ";
        // line 66
        $_v2 = ('' === $tmp = \Twig\Extension\CoreExtension::captureOutput((function () use (&$context, $macros, $blocks) {
            // line 67
            yield "            ";
            if ((($tmp =  !($context["compound"] ?? null)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {
                // line 68
                yield "                ";
                $context["label_attr"] = Twig\Extension\CoreExtension::merge(($context["label_attr"] ?? null), ["for" => ($context["id"] ?? null)]);
                // line 69
                yield "            ";
            }
            // line 70
            yield "            ";
            if ((($tmp = ($context["required"] ?? null)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {
                // line 71
                yield "                ";
                $context["label_attr"] = Twig\Extension\CoreExtension::merge(($context["label_attr"] ?? null), ["class" => Twig\Extension\CoreExtension::trim((((CoreExtension::getAttribute($this->env, $this->source, ($context["label_attr"] ?? null), "class", [], "any", true, true, false, 71)) ? (Twig\Extension\CoreExtension::default(CoreExtension::getAttribute($this->env, $this->source, ($context["label_attr"] ?? null), "class", [], "any", false, false, false, 71), "")) : ("")) . " required"))]);
                // line 72
                yield "            ";
            }
            // line 73
            yield "            ";
            if (( !(($context["label"] ?? null) === false) && Twig\Extension\CoreExtension::testEmpty(($context["label"] ?? null)))) {
                // line 74
                yield "                ";
                $context["label"] = $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->humanize(($context["name"] ?? null));
                // line 75
                yield "            ";
            }
            // line 76
            yield "
            <label";
            // line 77
            $context['_parent'] = $context;
            $context['_seq'] = CoreExtension::ensureTraversable(($context["label_attr"] ?? null));
            foreach ($context['_seq'] as $context["attrname"] => $context["attrvalue"]) {
                yield " ";
                yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($context["attrname"], "html", null, true);
                yield "=\"";
                yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($context["attrvalue"], "html", null, true);
                yield "\"";
            }
            $_parent = $context['_parent'];
            unset($context['_seq'], $context['attrname'], $context['attrvalue'], $context['_parent']);
            $context = array_intersect_key($context, $_parent) + $_parent;
            yield ">
            <input type=\"checkbox\" ";
            // line 78
            yield from             $this->unwrap()->yieldBlock("widget_attributes", $context, $blocks);
            if (array_key_exists("value", $context)) {
                yield " value=\"";
                yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["value"] ?? null), "html", null, true);
                yield "\"";
            }
            if ((($tmp = ($context["checked"] ?? null)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {
                yield " checked=\"checked\"";
            }
            yield " />
            ";
            // line 79
            if ((($tmp =  !(($context["label"] ?? null) === false)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {
                // line 80
                yield "                ";
                yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans(($context["label"] ?? null), [], ($context["translation_domain"] ?? null)), "html", null, true);
                yield "
            ";
            }
            // line 82
            yield "            </label>
        ";
            yield from [];
        })())) ? '' : new Markup($tmp, $this->env->getCharset());
        // line 66
        yield Twig\Extension\CoreExtension::spaceless($_v2);
        // line 84
        yield "    </div>
";
        yield from [];
    }

    // line 87
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_radio_widget(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 88
        yield "    <div class=\"radio\">
        ";
        // line 89
        $_v3 = ('' === $tmp = \Twig\Extension\CoreExtension::captureOutput((function () use (&$context, $macros, $blocks) {
            // line 90
            yield "            ";
            if ((($tmp =  !($context["compound"] ?? null)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {
                // line 91
                yield "                ";
                $context["label_attr"] = Twig\Extension\CoreExtension::merge(($context["label_attr"] ?? null), ["for" => ($context["id"] ?? null)]);
                // line 92
                yield "            ";
            }
            // line 93
            yield "            ";
            if ((($tmp = ($context["required"] ?? null)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {
                // line 94
                yield "                ";
                $context["label_attr"] = Twig\Extension\CoreExtension::merge(($context["label_attr"] ?? null), ["class" => Twig\Extension\CoreExtension::trim((((CoreExtension::getAttribute($this->env, $this->source, ($context["label_attr"] ?? null), "class", [], "any", true, true, false, 94)) ? (Twig\Extension\CoreExtension::default(CoreExtension::getAttribute($this->env, $this->source, ($context["label_attr"] ?? null), "class", [], "any", false, false, false, 94), "")) : ("")) . " required"))]);
                // line 95
                yield "            ";
            }
            // line 96
            yield "            ";
            if (( !(($context["label"] ?? null) === false) && Twig\Extension\CoreExtension::testEmpty(($context["label"] ?? null)))) {
                // line 97
                yield "                ";
                $context["label"] = $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->humanize(($context["name"] ?? null));
                // line 98
                yield "            ";
            }
            // line 99
            yield "            <label";
            $context['_parent'] = $context;
            $context['_seq'] = CoreExtension::ensureTraversable(($context["label_attr"] ?? null));
            foreach ($context['_seq'] as $context["attrname"] => $context["attrvalue"]) {
                yield " ";
                yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($context["attrname"], "html", null, true);
                yield "=\"";
                yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($context["attrvalue"], "html", null, true);
                yield "\"";
            }
            $_parent = $context['_parent'];
            unset($context['_seq'], $context['attrname'], $context['attrvalue'], $context['_parent']);
            $context = array_intersect_key($context, $_parent) + $_parent;
            yield ">
            <input type=\"radio\" ";
            // line 100
            yield from             $this->unwrap()->yieldBlock("widget_attributes", $context, $blocks);
            if (array_key_exists("value", $context)) {
                yield " value=\"";
                yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["value"] ?? null), "html", null, true);
                yield "\"";
            }
            if ((($tmp = ($context["checked"] ?? null)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {
                yield " checked=\"checked\"";
            }
            yield " />
            ";
            // line 101
            if ((($tmp =  !(($context["label"] ?? null) === false)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {
                // line 102
                yield "                ";
                yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans(($context["label"] ?? null), [], ($context["translation_domain"] ?? null)), "html", null, true);
                yield "
            ";
            }
            // line 104
            yield "            </label>
        ";
            yield from [];
        })())) ? '' : new Markup($tmp, $this->env->getCharset());
        // line 89
        yield Twig\Extension\CoreExtension::spaceless($_v3);
        // line 106
        yield "    </div>
";
        yield from [];
    }

    // line 109
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_date_widget(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 110
        yield "    ";
        if ((($context["widget"] ?? null) == "single_text")) {
            // line 111
            yield "        <div class=\"input-group\">
            <div class=\"input-group-addon\">
                <i class=\"far fa-calendar-alt\"></i>
            </div>

            ";
            // line 116
            if (( !array_key_exists("type", $context) || (($context["type"] ?? null) != "date"))) {
                // line 117
                yield "                ";
                if (CoreExtension::getAttribute($this->env, $this->source, ($context["attr"] ?? null), "class", [], "any", true, true, false, 117)) {
                    // line 118
                    yield "                    ";
                    $context["class"] = (CoreExtension::getAttribute($this->env, $this->source, ($context["attr"] ?? null), "class", [], "any", false, false, false, 118) . " timepicker");
                    // line 119
                    yield "                ";
                } else {
                    // line 120
                    yield "                    ";
                    $context["class"] = " timepicker";
                    // line 121
                    yield "                ";
                }
                // line 122
                yield "                ";
                $context["attr"] = Twig\Extension\CoreExtension::merge(($context["attr"] ?? null), ["class" => ($context["class"] ?? null), "data-datepickerenable" => "on"]);
                // line 123
                yield "            ";
            }
            // line 124
            yield "
            ";
            // line 125
            yield from             $this->unwrap()->yieldBlock("form_widget_simple", $context, $blocks);
            yield "
        </div>
    ";
        } else {
            // line 128
            yield "        ";
            $context["date_pattern"] = (("<div class=\"row\">" . ($context["date_pattern"] ?? null)) . "</div>");
            // line 129
            yield "        ";
            yield Twig\Extension\CoreExtension::replace(Twig\Extension\CoreExtension::replace(($context["date_pattern"] ?? null), ["{{ year }}" => "<div class=\"col-xs-4\">{{ year }}</div>", "{{ month }}" => "<div class=\"col-xs-4\">{{ month }}</div>", "{{ day }}" => "<div class=\"col-xs-4\">{{ day }}</div>"]), ["{{ year }}" =>             // line 134
$this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "year", [], "any", false, false, false, 134), 'widget'), "{{ month }}" =>             // line 135
$this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "month", [], "any", false, false, false, 135), 'widget'), "{{ day }}" =>             // line 136
$this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "day", [], "any", false, false, false, 136), 'widget')]);
            // line 137
            yield "

    ";
        }
        yield from [];
    }

    // line 142
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_time_widget(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 143
        yield "    ";
        if ((($context["widget"] ?? null) == "single_text")) {
            // line 144
            yield "        <div class=\"bootstrap-timepicker\">
            <div class=\"input-group\">
                <div class=\"input-group-addon add-on\">
                    <i class=\"far fa-clock\"></i>
                </div>
                ";
            // line 149
            if (( !array_key_exists("type", $context) || (($context["type"] ?? null) != "time"))) {
                // line 150
                yield "                    ";
                if (CoreExtension::getAttribute($this->env, $this->source, ($context["attr"] ?? null), "class", [], "any", true, true, false, 150)) {
                    // line 151
                    yield "                        ";
                    $context["class"] = (CoreExtension::getAttribute($this->env, $this->source, ($context["attr"] ?? null), "class", [], "any", false, false, false, 151) . " timepicker");
                    // line 152
                    yield "                    ";
                } else {
                    // line 153
                    yield "                        ";
                    $context["class"] = " timepicker";
                    // line 154
                    yield "                    ";
                }
                // line 155
                yield "                    ";
                $context["attr"] = Twig\Extension\CoreExtension::merge(($context["attr"] ?? null), ["class" => ($context["class"] ?? null), "data-timepicker" => "on"]);
                // line 156
                yield "                ";
            }
            // line 157
            yield "                ";
            yield from             $this->unwrap()->yieldBlock("form_widget_simple", $context, $blocks);
            yield "
            </div>
        </div>
    ";
        } else {
            // line 161
            yield "        ";
            yield from $this->yieldParentBlock("time_widget", $context, $blocks);
            yield "
    ";
        }
        yield from [];
    }

    // line 165
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_datetime_widget(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 166
        if ((($context["widget"] ?? null) == "single_text")) {
            // line 167
            yield "<div class=\"input-group\">
            <div class=\"input-group-addon\">
                <i class=\"fa fa-calendar-alt\"></i>
            </div>";
            // line 171
            yield from $this->yieldParentBlock("datetime_widget", $context, $blocks);
            // line 172
            yield "</div>";
        } else {
            // line 174
            yield from $this->yieldParentBlock("datetime_widget", $context, $blocks);
        }
        yield from [];
    }

    // line 178
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_email_widget(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 179
        yield "<div class=\"input-group\">
        <div class=\"input-group-addon\">
            <i class=\"fa fa-at\"></i>
        </div>";
        // line 183
        yield from $this->yieldParentBlock("email_widget", $context, $blocks);
        // line 184
        yield "</div>";
        yield from [];
    }

    // line 187
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_password_widget(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 188
        yield "<div class=\"input-group\">
        <div class=\"input-group-addon\">
            <i class=\"fas fa-key\"></i>
        </div>";
        // line 192
        yield from $this->yieldParentBlock("password_widget", $context, $blocks);
        // line 193
        yield "</div>";
        yield from [];
    }

    // line 196
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_tel_widget(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 197
        yield "<div class=\"input-group\">
        <div class=\"input-group-addon\">
            ";
        // line 199
        $context["icon"] = "phone";
        // line 200
        yield "            ";
        if (CoreExtension::inFilter("icon", Twig\Extension\CoreExtension::keys(($context["attr"] ?? null)))) {
            // line 201
            yield "                ";
            $context["icon"] = CoreExtension::getAttribute($this->env, $this->source, ($context["attr"] ?? null), "icon", [], "any", false, false, false, 201);
            // line 202
            yield "            ";
        }
        // line 203
        yield "            <i class=\"fas fa-";
        yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["icon"] ?? null), "html", null, true);
        yield "\"></i>
        </div>";
        // line 205
        yield from $this->yieldParentBlock("tel_widget", $context, $blocks);
        // line 206
        yield "</div>";
        yield from [];
    }

    // line 209
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_url_widget(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 210
        yield "<div class=\"input-group\">
        <div class=\"input-group-addon\">
            <i class=\"fas fa-home\"></i>
        </div>";
        // line 214
        yield from $this->yieldParentBlock("url_widget", $context, $blocks);
        // line 215
        yield "</div>";
        yield from [];
    }

    /**
     * @codeCoverageIgnore
     */
    public function getTemplateName(): string
    {
        return "@AdminLTE/layout/form-theme-horizontal.html.twig";
    }

    /**
     * @codeCoverageIgnore
     */
    public function isTraitable(): bool
    {
        return false;
    }

    /**
     * @codeCoverageIgnore
     */
    public function getDebugInfo(): array
    {
        return array (  659 => 215,  657 => 214,  652 => 210,  645 => 209,  640 => 206,  638 => 205,  633 => 203,  630 => 202,  627 => 201,  624 => 200,  622 => 199,  618 => 197,  611 => 196,  606 => 193,  604 => 192,  599 => 188,  592 => 187,  587 => 184,  585 => 183,  580 => 179,  573 => 178,  567 => 174,  564 => 172,  562 => 171,  557 => 167,  555 => 166,  548 => 165,  539 => 161,  531 => 157,  528 => 156,  525 => 155,  522 => 154,  519 => 153,  516 => 152,  513 => 151,  510 => 150,  508 => 149,  501 => 144,  498 => 143,  491 => 142,  483 => 137,  481 => 136,  480 => 135,  479 => 134,  477 => 129,  474 => 128,  468 => 125,  465 => 124,  462 => 123,  459 => 122,  456 => 121,  453 => 120,  450 => 119,  447 => 118,  444 => 117,  442 => 116,  435 => 111,  432 => 110,  425 => 109,  419 => 106,  417 => 89,  412 => 104,  406 => 102,  404 => 101,  392 => 100,  376 => 99,  373 => 98,  370 => 97,  367 => 96,  364 => 95,  361 => 94,  358 => 93,  355 => 92,  352 => 91,  349 => 90,  347 => 89,  344 => 88,  337 => 87,  331 => 84,  329 => 66,  324 => 82,  318 => 80,  316 => 79,  304 => 78,  289 => 77,  286 => 76,  283 => 75,  280 => 74,  277 => 73,  274 => 72,  271 => 71,  268 => 70,  265 => 69,  262 => 68,  259 => 67,  257 => 66,  254 => 65,  247 => 64,  240 => 61,  237 => 60,  231 => 59,  228 => 58,  225 => 57,  222 => 56,  217 => 55,  210 => 54,  205 => 45,  200 => 50,  191 => 48,  187 => 47,  182 => 46,  179 => 45,  172 => 44,  164 => 41,  161 => 40,  158 => 39,  155 => 38,  152 => 37,  149 => 36,  146 => 35,  143 => 34,  140 => 33,  138 => 32,  135 => 31,  133 => 28,  130 => 27,  127 => 26,  124 => 25,  121 => 24,  118 => 23,  115 => 22,  112 => 21,  105 => 20,  100 => 9,  96 => 17,  92 => 15,  83 => 13,  79 => 12,  76 => 11,  73 => 10,  70 => 9,  63 => 8,  52 => 1,);
    }

    public function getSourceContext(): Source
    {
        return new Source("", "@AdminLTE/layout/form-theme-horizontal.html.twig", "/var/www/html/vendor/kevinpapst/adminlte-bundle/Resources/views/layout/form-theme-horizontal.html.twig");
    }
}
