Error 500 Internal Server Error

GET https://storm.ewm.dev/en/contact-us

Exceptions

Variable "property" does not exist.

Exception

Twig\Error\ RuntimeError

Show exception properties
Twig\Error\RuntimeError {#3818
  -lineno: 12
  -name: "includes/formScript.html.twig"
  -rawMessage: "Variable "property" does not exist."
  -sourcePath: "/home/clients/14b5397f746691c6b08ec948889ec1dd/var/www/storm-be/templates/includes/formScript.html.twig"
  -sourceCode: """
     <script type="application/javascript">\n
        $(document).ready(function () {\n
            $("#form_inquiry").submit(function (event) {\n
                    event.preventDefault();\n
                    event.stopImmediatePropagation();\n
    \n
                    // Push to dataLayer BEFORE the AJAX call\n
                   window.dataLayer = window.dataLayer || [];\n
                   window.dataLayer.push({\n
                       event: 'contact_proprietary',\n
                       property: {\n
                           id: "{{ property.reference }}",\n
                           name: "{{ property.title|raw }}",\n
                           surface: "{{ property.surface|number_format(0, ' ', ' ') }} m²",\n
                           city: "{{ property.city }}",\n
                           type: "{{ app.request.query.get('type') }}"\n
                       },\n
                       user_data: {\n
                           email_hash: "{{ app.session.get('user') ? app.session.get('user').email|sha256 : '' }}",\n
                           is_connected: "{{ app.session.get('user') ? 'yes' : 'no' }}",\n
                           user_id: "{{ app.session.get('user') ? app.session.get('user').id : '' }}"\n
                       }\n
                   });\n
    \n
                    grecaptcha.ready(function () { \n
                        grecaptcha\n
                            .execute("{{ recaptcha_site_key }}", {\n
                                action: "form_inquiry"\n
                            }) \n
                            .then(function (token) {\n
                            $.ajax({\n
                                url: "{{ path('mail_send') }}",\n
                                type: "POST",\n
                                data: {\n
                                    'email-from': $("input[name=email-from]").val(),\n
                                    'email-to': $("input[name=email-to]").val(),\n
                                    'email-subject': $("input[name=email-subject]").val(),\n
                                    'email-owner': $("input[name=email-owner]").val(),\n
                                    'data': $("#form_inquiry").serializeArray(),\n
                                    'recaptchaResponseInquiry': token\n
                                },\n
                                success: function (data) {\n
                                    $('#form_inquiry').hide();\n
                                    $('#success_message').fadeIn();\n
                                    \n
                                    setTimeout(()=>{\n
                                        $('#success_message').hide();\n
                                        $('#form_inquiry').fadeIn();\n
                                        $('#form_inquiry').removeClass('sending');\n
                                    }\n
                                    , 4000)\n
                                },\n
                                error: function (err) {\n
                                    $('#form_inquiry').hide();\n
                                    $('#error_message').fadeIn();\n
                                    \n
                                    setTimeout(()=>{\n
                                        $('#error_message').hide();\n
                                        $('#form_inquiry').fadeIn();\n
                                        $('#form_inquiry').removeClass('sending');\n
                                    }\n
                                    , 4000)\n
                                }\n
                            });\n
                    });\n
                });\n
            });\n
        });\n
    </script>\n
    """
}
  1.                 // Push to dataLayer BEFORE the AJAX call
  2.                window.dataLayer = window.dataLayer || [];
  3.                window.dataLayer.push({
  4.                    event: 'contact_proprietary',
  5.                    property: {
  6.                        id: "{{ property.reference }}",
  7.                        name: "{{ property.title|raw }}",
  8.                        surface: "{{ property.surface|number_format(0, ' ', ' ') }} m²",
  9.                        city: "{{ property.city }}",
  10.                        type: "{{ app.request.query.get('type') }}"
  11.                    },
  1.                window.dataLayer.push({
  2.                    event: 'contact_proprietary',
  3.                    property: {
  4.                        id: \"";
  5.         // line 12
  6.         yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env$this->source, (isset($context["property"]) || array_key_exists("property"$context) ? $context["property"] : (function () { throw new RuntimeError('Variable "property" does not exist.'12$this->source); })()), "reference", [], "any"falsefalsefalse12), "html"nulltrue);
  7.         yield "\",
  8.                        name: \"";
  9.         // line 13
  10.         yield CoreExtension::getAttribute($this->env$this->source, (isset($context["property"]) || array_key_exists("property"$context) ? $context["property"] : (function () { throw new RuntimeError('Variable "property" does not exist.'13$this->source); })()), "title", [], "any"falsefalsefalse13);
  11.         yield "\",
in vendor/twig/twig/src/Template.php -> doDisplay (line 388)
  1.     {
  2.         $context += $this->env->getGlobals();
  3.         $blocks array_merge($this->blocks$blocks);
  4.         try {
  5.             yield from $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = []): void
  4.     {
  5.         foreach ($this->yield($context$blocks) as $data) {
  6.             echo $data;
  7.         }
  8.     }
  9.     public function render(array $context): string
in vendor/twig/twig/src/Template.php -> display (line 359)
  1.                 ob_start();
  2.             } else {
  3.                 ob_start(function () { return ''; });
  4.             }
  5.             try {
  6.                 $this->display($context);
  7.             } catch (\Throwable $e) {
  8.                 while (ob_get_level() > $level) {
  9.                     ob_end_clean();
  10.                 }
  1.         yield from $this->template->yieldBlock($name$context);
  2.     }
  3.     public function render(array $context = []): string
  4.     {
  5.         return $this->template->render($context);
  6.     }
  7.     /**
  8.      * @return void
  9.      */
  1.             if ($isSandboxed) {
  2.                 $loaded->unwrap()->checkSecurity();
  3.             }
  4.             return $loaded->render($variables);
  5.         } finally {
  6.             if ($isSandboxed && !$alreadySandboxed) {
  7.                 $sandbox->disableSandbox();
  8.             }
  9.         }
  1.         $_parent $context['_parent'];
  2.         unset($context['_seq'], $context['_key'], $context['item'], $context['_parent'], $context['loop']);
  3.         $context array_intersect_key($context$_parent) + $_parent;
  4.         // line 8
  5.         yield "        ";
  6.         yield Twig\Extension\CoreExtension::include($this->env$context"includes/formScript.html.twig");
  7.         yield "
  8.     ";
  9.         
  10.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> block_content (line 432)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 yield from $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1. \t\t\t\t";
  2.         // line 80
  3.         yield from $this->unwrap()->yieldBlock('smoothContentBegin'$context$blocks);
  4.         // line 83
  5.         yield "\t\t\t\t\t";
  6.         yield from $this->unwrap()->yieldBlock('content'$context$blocks);
  7.         // line 84
  8.         yield "\t\t\t\t\t";
  9.         yield from $this->unwrap()->yieldBlock('newslatter'$context$blocks);
  10.         // line 87
  11.         yield "\t\t\t\t\t";
in vendor/twig/twig/src/Template.php -> doDisplay (line 388)
  1.     {
  2.         $context += $this->env->getGlobals();
  3.         $blocks array_merge($this->blocks$blocks);
  4.         try {
  5.             yield from $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""pages/contact.html.twig"));
  3.         $this->parent $this->loadTemplate("base.html.twig""pages/contact.html.twig"1);
  4.         yield from $this->parent->unwrap()->yield($contextarray_merge($this->blocks$blocks));
  5.         
  6.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  7.         
  8.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 388)
  1.     {
  2.         $context += $this->env->getGlobals();
  3.         $blocks array_merge($this->blocks$blocks);
  4.         try {
  5.             yield from $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = []): void
  4.     {
  5.         foreach ($this->yield($context$blocks) as $data) {
  6.             echo $data;
  7.         }
  8.     }
  9.     public function render(array $context): string
in vendor/twig/twig/src/Template.php -> display (line 359)
  1.                 ob_start();
  2.             } else {
  3.                 ob_start(function () { return ''; });
  4.             }
  5.             try {
  6.                 $this->display($context);
  7.             } catch (\Throwable $e) {
  8.                 while (ob_get_level() > $level) {
  9.                     ob_end_clean();
  10.                 }
  1.         yield from $this->template->yieldBlock($name$context);
  2.     }
  3.     public function render(array $context = []): string
  4.     {
  5.         return $this->template->render($context);
  6.     }
  7.     /**
  8.      * @return void
  9.      */
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.         if (null !== $block) {
  2.             return $this->container->get('twig')->load($view)->renderBlock($block$parameters);
  3.         }
  4.         return $this->container->get('twig')->render($view$parameters);
  5.     }
  6.     private function doRender(string $view, ?string $block, array $parameters, ?Response $responsestring $method): Response
  7.     {
  8.         $content $this->doRenderView($view$block$parameters$method);
  1.      *
  2.      * Forms found in parameters are auto-cast to form views.
  3.      */
  4.     protected function renderView(string $view, array $parameters = []): string
  5.     {
  6.         return $this->doRenderView($viewnull$parameters__FUNCTION__);
  7.     }
  8.     /**
  9.      * Returns a rendered block from a view.
  10.      *
  1.             $content $this->renderPreview(
  2.                 $viewTemplate,
  3.                 $data
  4.             );
  5.         } else {
  6.             $content $this->renderView(
  7.                 $viewTemplate,
  8.                 $data
  9.             );
  10.         }
  1.      *
  2.      * @return Response
  3.      */
  4.     public function indexAction(StructureInterface $structure$preview false$partial false)
  5.     {
  6.         $response $this->renderStructure(
  7.             $structure,
  8.             [],
  9.             $preview,
  10.             $partial
  11.         );
in vendor/symfony/http-kernel/HttpKernel.php -> indexAction (line 183)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 69)
  1. // When using the HttpCache, you need to call the method in your front controller
  2. // instead of relying on the configuration parameter
  3. // https://symfony.com/doc/6.4/reference/configuration/framework.html#http-method-override
  4. Request::enableHttpMethodParameterOverride();
  5. $request Request::createFromGlobals();
  6. $response $kernel->handle($request);
  7. $response->send();
  8. $kernel->terminate($request$response);

Logs

No log messages

Stack Trace

RuntimeError
Twig\Error\RuntimeError:
Variable "property" does not exist.

  at templates/includes/formScript.html.twig:12
  at __TwigTemplate_11a5a3c1625973cb095d555cd38bf868->{closure}()
     (var/cache/website/dev/twig/cb/cb6ad1aa2c69734913d27052aeb928f6.php:61)
  at __TwigTemplate_11a5a3c1625973cb095d555cd38bf868->doDisplay(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'contact', 'originTemplateClass' => 'header__transparent'), array())
     (vendor/twig/twig/src/Template.php:388)
  at Twig\Template->yield(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'contact', 'originTemplateClass' => 'header__transparent'), array())
     (vendor/twig/twig/src/Template.php:344)
  at Twig\Template->display(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'contact', 'originTemplateClass' => 'header__transparent'))
     (vendor/twig/twig/src/Template.php:359)
  at Twig\Template->render(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'contact', 'originTemplateClass' => 'header__transparent'))
     (vendor/twig/twig/src/TemplateWrapper.php:51)
  at Twig\TemplateWrapper->render(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'contact', 'originTemplateClass' => 'header__transparent'))
     (vendor/twig/twig/src/Extension/CoreExtension.php:1493)
  at Twig\Extension\CoreExtension::include(object(Environment), array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'contact', 'originTemplateClass' => 'header__transparent'), 'includes/formScript.html.twig')
     (var/cache/website/dev/twig/26/26f54287ff5316272126c607f51d674f.php:114)
  at __TwigTemplate_ff78d5634b9f04fcb33d68da4d2215a1->block_content(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'contact', 'originTemplateClass' => 'header__transparent'), array('transparent' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_transparent'), 'meta' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_meta'), 'metaDesc' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_metaDesc'), 'style' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_style'), 'bodyStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_bodyStyle'), 'loader' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_loader'), 'includes' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_includes'), 'mainStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_mainStyle'), 'app' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_app'), 'smoothContentBegin' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentBegin'), 'content' => array(object(__TwigTemplate_ff78d5634b9f04fcb33d68da4d2215a1), 'block_content'), 'newslatter' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_newslatter'), 'smoothContentEnd' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentEnd'), 'javascripts' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_javascripts')))
     (vendor/twig/twig/src/Template.php:432)
  at Twig\Template->yieldBlock('content', array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'contact', 'originTemplateClass' => 'header__transparent'), array('transparent' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_transparent'), 'meta' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_meta'), 'metaDesc' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_metaDesc'), 'style' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_style'), 'bodyStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_bodyStyle'), 'loader' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_loader'), 'includes' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_includes'), 'mainStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_mainStyle'), 'app' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_app'), 'smoothContentBegin' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentBegin'), 'content' => array(object(__TwigTemplate_ff78d5634b9f04fcb33d68da4d2215a1), 'block_content'), 'newslatter' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_newslatter'), 'smoothContentEnd' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentEnd'), 'javascripts' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_javascripts')))
     (var/cache/website/dev/twig/5c/5c88e726e40ef83d57dc58e3094f3b22.php:146)
  at __TwigTemplate_9d73c8cb19e13b615dce5c46e439005b->doDisplay(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'contact', 'originTemplateClass' => 'header__transparent'), array('transparent' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_transparent'), 'meta' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_meta'), 'metaDesc' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_metaDesc'), 'style' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_style'), 'bodyStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_bodyStyle'), 'loader' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_loader'), 'includes' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_includes'), 'mainStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_mainStyle'), 'app' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_app'), 'smoothContentBegin' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentBegin'), 'content' => array(object(__TwigTemplate_ff78d5634b9f04fcb33d68da4d2215a1), 'block_content'), 'newslatter' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_newslatter'), 'smoothContentEnd' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentEnd'), 'javascripts' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_javascripts')))
     (vendor/twig/twig/src/Template.php:388)
  at Twig\Template->yield(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f'), array('transparent' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_transparent'), 'meta' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_meta'), 'metaDesc' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_metaDesc'), 'style' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_style'), 'bodyStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_bodyStyle'), 'loader' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_loader'), 'includes' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_includes'), 'mainStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_mainStyle'), 'app' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_app'), 'smoothContentBegin' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentBegin'), 'content' => array(object(__TwigTemplate_ff78d5634b9f04fcb33d68da4d2215a1), 'block_content'), 'newslatter' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_newslatter'), 'smoothContentEnd' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentEnd'), 'javascripts' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_javascripts')))
     (var/cache/website/dev/twig/26/26f54287ff5316272126c607f51d674f.php:53)
  at __TwigTemplate_ff78d5634b9f04fcb33d68da4d2215a1->doDisplay(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f'), array('content' => array(object(__TwigTemplate_ff78d5634b9f04fcb33d68da4d2215a1), 'block_content')))
     (vendor/twig/twig/src/Template.php:388)
  at Twig\Template->yield(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f'), array('content' => array(object(__TwigTemplate_ff78d5634b9f04fcb33d68da4d2215a1), 'block_content')))
     (vendor/twig/twig/src/Template.php:344)
  at Twig\Template->display(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us')))
     (vendor/twig/twig/src/Template.php:359)
  at Twig\Template->render(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us')))
     (vendor/twig/twig/src/TemplateWrapper.php:51)
  at Twig\TemplateWrapper->render(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us')))
     (vendor/twig/twig/src/Environment.php:334)
  at Twig\Environment->render('pages/contact.html.twig', array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us')))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:431)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('pages/contact.html.twig', null, array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us')), 'renderView')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:229)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('pages/contact.html.twig', array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 32)), array('title' => array(), 'emailTitle' => array(), 'email' => array(), 'phoneTitle' => array(), 'phone' => array(), 'addressTitle' => array(), 'address' => array()), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'en', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Contact us', 'url' => '/contact-us', 'blocks' => array(array('type' => 'contact-cover', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Contact us', 'cover' => object(Media)), array('type' => 'contact-information', 'settings' => object(stdClass), 'title' => '', 'emailTitle' => 'Email', 'email' => 'info@storm-re.com', 'phoneTitle' => 'Phone', 'phone' => '+33 1 44 34 15 62', 'addressTitle' => 'Address', 'address' => '<p>7 rue de Boissac&nbsp;</p><p>69002 LYON</p>'), array('type' => 'contact-form', 'settings' => object(stdClass), 'title' => 'Contact form', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'First name', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Last name', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'BuyRent', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>I agree to the privacy policy</p>', 'btnText' => 'Privacy policy', 'btnLink' => 'https://storm.ewm.dev/en/privacy-policy'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'send', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'sb@ewm.swiss', 'email_from' => 'no-reply@ewm.swiss')))), 'id' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'uuid' => 'a56a1b36-9257-425f-88a0-a7c1fa1e6f4e', 'creator' => 1, 'changer' => 16, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'contact', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/contactez-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/contact-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/en', 'resourceLocatorPrefix' => '/en', 'resourceLocator' => '/contact-us')))
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/WebsiteController.php:77)
  at Sulu\Bundle\WebsiteBundle\Controller\WebsiteController->renderStructure(object(PageBridge), array(), false, false)
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/DefaultController.php:33)
  at Sulu\Bundle\WebsiteBundle\Controller\DefaultController->indexAction(object(PageBridge), false, false)
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:69)