<?php 
 
use Twig\Environment; 
use Twig\Error\LoaderError; 
use Twig\Error\RuntimeError; 
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; 
 
/* Block/drawer_header.twig */ 
class __TwigTemplate_aee5f620f827ff0c11fd67691eff313f extends \Eccube\Twig\Template 
{ 
    private $source; 
    private $macros = []; 
 
    public function __construct(Environment $env) 
    { 
        parent::__construct($env); 
 
        $this->source = $this->getSourceContext(); 
 
        $this->parent = false; 
 
        $this->blocks = [ 
        ]; 
        $this->sandbox = $this->env->getExtension('\Twig\Extension\SandboxExtension'); 
        $this->checkSecurity(); 
    } 
 
    protected function doDisplay(array $context, array $blocks = []) 
    { 
        $macros = $this->macros; 
        $__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"]; 
        $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "Block/drawer_header.twig")); 
 
        $__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"]; 
        $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "Block/drawer_header.twig")); 
 
        // line 1 
        echo "<div class=\"ym-drawer_header\"> 
    "; 
        // line 2 
        echo $this->extensions['Eccube\Twig\Extension\IgnoreTwigSandboxErrorExtension']->twig_include($this->env, $context, "Block/login_sp.twig"); 
        echo " 
    "; 
        // line 3 
        echo $this->env->getRuntime('Symfony\Bridge\Twig\Extension\HttpKernelRuntime')->renderFragment($this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("block_search_product")); 
        echo " 
</div>"; 
         
        $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof); 
 
         
        $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof); 
 
    } 
 
    public function getTemplateName() 
    { 
        return "Block/drawer_header.twig"; 
    } 
 
    public function isTraitable() 
    { 
        return false; 
    } 
 
    public function getDebugInfo() 
    { 
        return array (  52 => 3,  48 => 2,  45 => 1,); 
    } 
 
    public function getSourceContext() 
    { 
        return new Source("<div class=\"ym-drawer_header\"> 
    {{ include('Block/login_sp.twig') }} 
    {{ render(path('block_search_product')) }} 
</div>", "Block/drawer_header.twig", "/home/dober/testman.biz/public_html/yamaria-ec-demo/app/template/yamaria/Block/drawer_header.twig"); 
    } 
     
    public function checkSecurity() 
    { 
        static $tags = array(); 
        static $filters = array(); 
        static $functions = array("include" => 2, "render" => 3, "path" => 3); 
 
        try { 
            $this->sandbox->checkSecurity( 
                [], 
                [], 
                ['include', 'render', 'path'] 
            ); 
        } catch (SecurityError $e) { 
            $e->setSourceContext($this->source); 
 
            if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) { 
                $e->setTemplateLine($tags[$e->getTagName()]); 
            } elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) { 
                $e->setTemplateLine($filters[$e->getFilterName()]); 
            } elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) { 
                $e->setTemplateLine($functions[$e->getFunctionName()]); 
            } 
 
            throw $e; 
        } 
 
    } 
}