Error 500 Internal Server Error

GET https://storm.ewm.dev/en/sell

Forwarded to ErrorController (131f78)

Exceptions

Variable "property" does not exist.

Exception

Twig\Error\ RuntimeError

Show exception properties
Twig\Error\RuntimeError {#9279
  -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.         
  11.         $__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/service.html.twig"));
  3.         $this->parent $this->loadTemplate("base.html.twig""pages/service.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' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell'), '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' => 'service', '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' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell'), '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' => 'service', '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' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell'), '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' => 'service', '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' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell'), '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' => 'service', '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' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell'), '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' => 'service', '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' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell'), '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' => 'service', 'originTemplateClass' => 'header__transparent'), 'includes/formScript.html.twig')
     (var/cache/website/dev/twig/b2/b21441914fa3397de3d653ed82c00be5.php:114)
  at __TwigTemplate_c37f21657274968237035430730f0915->block_content(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell'), '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' => 'service', '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_c37f21657274968237035430730f0915), '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' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell'), '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' => 'service', '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_c37f21657274968237035430730f0915), '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' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell'), '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' => 'service', '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_c37f21657274968237035430730f0915), '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' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell'), '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_c37f21657274968237035430730f0915), '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/b2/b21441914fa3397de3d653ed82c00be5.php:53)
  at __TwigTemplate_c37f21657274968237035430730f0915->doDisplay(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell'), '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_c37f21657274968237035430730f0915), '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' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell'), '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_c37f21657274968237035430730f0915), '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' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell')))
     (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' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell')))
     (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' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell')))
     (vendor/twig/twig/src/Environment.php:334)
  at Twig\Environment->render('pages/service.html.twig', array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell')))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:431)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('pages/service.html.twig', null, array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell')), 'renderView')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:229)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('pages/service.html.twig', array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('displayOption' => null, 'id' => 27)), array('title' => array(), 'description' => array(), 'btnText' => array(), 'image' => array('id' => 28), 'video' => array('displayOption' => null, 'id' => 8), 'start' => array()), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 17), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array(), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array()))), 'content' => array('title' => 'Sell', 'url' => '/sell', 'blocks' => array(array('type' => 'service-cover', 'settings' => object(stdClass), 'title' => 'Sell', 'cover' => object(Media)), array('type' => 'service-about', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">BOOST&nbsp;</p><p style="text-align:center;">YOUR ASSET DISPOSALS STRATEGY&nbsp;</p><p style="text-align:center;">ON AUTOPILOT! 🚀</p>', 'description' => '<p>Who said selling logistics assets had to be a maze of admin chaos and fragmented processes?</p><p>STORM shatters this outdated reality, launching your disposal strategy into a new dimension where every second saved becomes a lever for maximum value.</p><p>Imagine this: your asset manager is no longer drowning in NDAs, data rooms, and endless email chains. Instead, they orchestrate a perfectly synchronized process where every key player—potential buyers, notaries, lawyers, technical experts—operates within a seamless digital ecosystem, turning operational headaches into a well-executed symphony.</p><p>Our next-gen control center transforms your asset disposal process, combining intelligent automation with bulletproof security to instantly deliver the right insights to the right decision-makers.</p><p>No more discovering roadblocks weeks too late! STORM revolutionizes your visibility by providing real-time tracking of every milestone, every friction point, and every acceleration opportunity—empowering you to shift from operational firefighting to strategic foresight.</p><p>While your team is freed from administrative burdens to focus on value creation, our platform silently amplifies competition among buyers, mechanically driving up the final asset valuation.</p><p>STORM Sales: Because in our industry, the real luxury isn’t time—it’s the ability to turn time into exponential value for your clients.&nbsp;</p>', 'btnText' => 'Send request', 'image' => object(Media), 'video' => object(Media), 'start' => ''), array('type' => 'service-explore', 'settings' => object(stdClass), 'title' => '<p>Explore features of our platform</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Rent', 'description' => '<p>Looking for maximum flexibility or a long-term commitment ?&nbsp;</p><p>&nbsp;</p><p>Our platform revolutionizes the rental experience by directly connecting you with key players in logistics real estate. Find the perfect space in just a few clicks !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Buy', 'description' => '<p>Imagine making informed investment decisions in just minutes, equipped with the precise insights usually reserved for top experts. Our ultra-fast analytics technology turns market opacity into clear data. How?&nbsp;</p><p>&nbsp;</p><p>By instantly feeding your investment criteria into our financial intelligence engine to generate :&nbsp;</p><p>&nbsp;</p><p>A complete breakdown of essential KPIs and a personalized cash flow projection that reveals the financial trajectory of your investment.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Find your expert', 'description' => '<p>Imagine a world where all logistics real estate players converge in one single place !&nbsp;</p><p>&nbsp;</p><p>Our marketplace brings together the entire service provider ecosystem in a dynamic interface, propelling sellers, buyers, and tenants into a new era of operational efficiency.&nbsp;</p><p>&nbsp;</p><p>From development to disposition, navigate every phase of the real estate cycle with amplified power through our hyperconnected network of certified specialists.</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Market Data', 'description' => '<p>Dive into the vibrant flow of data shaping the present and future of logistics real estate !&nbsp;</p><p>&nbsp;</p><p>Our DataPulse dashboard captures and deciphers market trends in real time, transforming complexity into clarity.&nbsp;</p><p>&nbsp;</p><p>Ride the wave of emerging trends, gain a decisive edge, and turn every data point into an explosive opportunity !</p>', 'image' => object(Media), 'btnText' => 'Explore more', 'btnLink' => null, 'btnTarget' => '_blank'))), array('type' => 'service-form', 'settings' => object(stdClass), 'title' => 'Request a demo', 'description' => '<p>Please do not hesitate to contact us directly or just sent us a message by filling out the form<br>&nbsp;</p>', 'form' => null))), 'id' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'uuid' => '162eee2b-a448-4bca-ba0c-7f1360f4565f', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'service', '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', 'country' => '', 'alternate' => false), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/sell', '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' => '/sell')))
     (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)