<?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;

/* index/contact.html.twig */
class __TwigTemplate_dff88ff99d86b147c59cd92112d11c4d 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 = [
            'page_title' => [$this, 'block_page_title'],
            'page_subtitle' => [$this, 'block_page_subtitle'],
            'page_breadcrumb' => [$this, 'block_page_breadcrumb'],
            'page_content' => [$this, 'block_page_content'],
        ];
    }

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

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

    // line 3
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_title(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield "Contact";
        yield from [];
    }

    // line 4
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_subtitle(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 5
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_breadcrumb(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield "Contact";
        yield from [];
    }

    // line 7
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_content(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 8
        yield "<section id=\"contact\" class=\"contact\">
    <div class=\"container\">

        <div>
            <iframe style=\"border:0; width: 100%; height: 270px;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12097.433213460943!2d-74.0062269!3d40.7101282!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb89d1fe6bc499443!2sDowntown+Conference+Center!5e0!3m2!1smk!2sbg!4v1539943755621\" frameborder=\"0\" allowfullscreen></iframe>
        </div>

        <div class=\"row mt-5\">

            <div class=\"col-lg-4\" data-aos=\"fade-right\">
                <div class=\"info\">
                <div class=\"address\">
                    <i class=\"icofont-google-map\"></i>
                    <h4>Adresse:</h4>
                    <p>Immeuble Espace Dina ,Cotonou, Bénin</p>
                </div>

                <div class=\"email\">
                    <i class=\"icofont-envelope\"></i>
                    <h4>Email:</h4>
                    <p>dgcsodd@plan.gouv.bj</p>
                </div>

                <div class=\"phone\">
                    <i class=\"icofont-phone\"></i>
                    <h4>Téléphone:</h4>
                    <p>+229 21 31 00 00</p>
                </div>

                </div>

            </div>

            <div class=\"col-lg-8 mt-5 mt-lg-0\" data-aos=\"fade-left\">

                <form action=\"forms/contact.php\" method=\"post\" role=\"form\" class=\"php-email-form\">
                <div class=\"form-row\">
                    <div class=\"col-md-6 form-group\">
                    <input type=\"text\" name=\"name\" class=\"form-control\" id=\"name\" placeholder=\"Votre Nom\" data-rule=\"minlen:4\" data-msg=\"Please enter at least 4 chars\" />
                    <div class=\"validate\"></div>
                    </div>
                    <div class=\"col-md-6 form-group\">
                    <input type=\"email\" class=\"form-control\" name=\"email\" id=\"email\" placeholder=\"Votre Email\" data-rule=\"email\" data-msg=\"Please enter a valid email\" />
                    <div class=\"validate\"></div>
                    </div>
                </div>
                <div class=\"form-group\">
                    <input type=\"text\" class=\"form-control\" name=\"subject\" id=\"subject\" placeholder=\"Sujet\" data-rule=\"minlen:4\" data-msg=\"Please enter at least 8 chars of subject\" />
                    <div class=\"validate\"></div>
                </div>
                <div class=\"form-group\">
                    <textarea class=\"form-control\" name=\"message\" rows=\"5\" data-rule=\"required\" data-msg=\"Please write something for us\" placeholder=\"Message\"></textarea>
                    <div class=\"validate\"></div>
                </div>
                <div class=\"mb-3\">
                    <div class=\"loading\">Loading</div>
                    <div class=\"error-message\"></div>
                    <div class=\"sent-message\">Your message has been sent. Thank you!</div>
                </div>
                <div class=\"text-center\"><button type=\"submit\">Send Message</button></div>
                </form>

            </div>

        </div>

    </div>
</section>
";
        yield from [];
    }

    /**
     * @codeCoverageIgnore
     */
    public function getTemplateName(): string
    {
        return "index/contact.html.twig";
    }

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

    /**
     * @codeCoverageIgnore
     */
    public function getDebugInfo(): array
    {
        return array (  93 => 8,  86 => 7,  75 => 5,  65 => 4,  54 => 3,  43 => 1,);
    }

    public function getSourceContext(): Source
    {
        return new Source("", "index/contact.html.twig", "/var/www/html/templates/index/contact.html.twig");
    }
}
