/
var
/
www
/
html
/
boazapp
/
var
/
cache
/
prod
/
twig
/
4c
/
Upload File
HOME
<?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; /* users/profile.html.twig */ class __TwigTemplate_bb1562f9fdc6897561aab9f743f82c449fb377cf35138439e9178cf70f7b93b7 extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->blocks = [ 'sidemenu' => [$this, 'block_sidemenu'], 'content' => [$this, 'block_content'], ]; } protected function doGetParent(array $context) { // line 1 return "base2.html.twig"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; $this->parent = $this->loadTemplate("base2.html.twig", "users/profile.html.twig", 1); yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_sidemenu($context, array $blocks = []) { $macros = $this->macros; // line 4 yield " <li class=\"active\" id=\"home\"> <a href=\""; // line 5 yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("home"); yield "\"> <p>Home</p> </a> </li> "; return; yield ''; } // line 13 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 14 yield " <div class=\"content\"> <div class=\"container-fluid\"> <div class=\"row\"> <div class=\"col-md-6 col-md-offset-2\"> <div class=\"card\"> <div class=\"header\"> <h4 class=\"title\">Profile</h4> </div> <div class=\"content\"> <form action=\""; // line 23 yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("profile"); yield "\" method=\"post\"> <div class=\"forms\"> <div class=\"form-group\"> <label for=\"email\"><h4>Email:</h4></label> <input class=\"form-control\" type=\"text\" id=\"email\" name=\"email\" value="; // line 28 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, ($context["user"] ?? null), "email", [], "any", false, false, false, 28), "html", null, true); yield " /> </div> <div class=\"form-group\"> <label for=\"telephone\"><h4>Telephone:</h4></label> <input class=\"form-control\" type=\"text\" id=\"telephone\" name=\"telephone\" value="; // line 33 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, ($context["user"] ?? null), "telephone", [], "any", false, false, false, 33), "html", null, true); yield " /> </div> <button type=\"submit\" name=\"submit\" class=\"btn btn-default\">Update</button> </div> </form> </div> </div> </div> </div> </div> </div> "; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "users/profile.html.twig"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 96 => 33, 88 => 28, 80 => 23, 69 => 14, 65 => 13, 55 => 5, 52 => 4, 48 => 3, 37 => 1,); } public function getSourceContext() { return new Source("", "users/profile.html.twig", "/var/www/html/boazapp/templates/users/profile.html.twig"); } }