Symfony Exception

ErrorException ViewException

HTTP 500 Internal Server Error

Attempt to read property "post_content" on null (View: /home/goit/goit.global/dev/web/app/themes/goit-global/resources/views/404.blade.php)

Exceptions 2

Illuminate\View\ ViewException

  1. //        $word_count = str_word_count($clean_content);
  2. //        $time = ceil($word_count / 250);
  3. //        return $time;
  4.         $words_per_minutes 250;
  5.         $content_text is_single() ? get_the_content() : get_post(get_the_ID())->post_content;
  6.         $minutes round(count(preg_split('/\s/'$content_text)) / $words_per_minutes);
  7.         return $minutes;
  8.     }
  9. }
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         }
  2.         // Once we have the path to the compiled file, we will evaluate the paths with
  3.         // typical PHP just like any other templates. We also keep a stack of views
  4.         // which have been rendered for right exception messages to be generated.
  5.         $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         array_pop($this->lastCompiled);
  7.         return $results;
  8.     }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each sections get flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.     <?php wp_body_open(); ?>
  2.     <?php do_action('get_header'); ?>
  3.     <div id="app">
  4.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5.     </div>
  6.     <?php do_action('get_footer'); ?>
  7.     <?php wp_footer(); ?>
  8.     <?php if (get_field('binotel_hash')) { ?>
include('/home/goit/goit.global/dev/web/app/themes/goit-global/index.php') in /home/goit/goit.global/dev/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/goit/goit.global/dev/web/wp/wp-includes/template-loader.php') in /home/goit/goit.global/dev/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/home/goit/goit.global/dev/web/wp/wp-blog-header.php') in /home/goit/goit.global/dev/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

ErrorException

Attempt to read property "post_content" on null

  1. //        $word_count = str_word_count($clean_content);
  2. //        $time = ceil($word_count / 250);
  3. //        return $time;
  4.         $words_per_minutes 250;
  5.         $content_text is_single() ? get_the_content() : get_post(get_the_ID())->post_content;
  6.         $minutes round(count(preg_split('/\s/'$content_text)) / $words_per_minutes);
  7.         return $minutes;
  8.     }
  9. }
  1.      * @throws \ErrorException
  2.      */
  3.     public function handleError($level$message$file ''$line 0$context = [])
  4.     {
  5.         try {
  6.             parent::handleError($level$message$file$line$context);
  7.         } catch (Throwable $e) {
  8.             if (! apply_filters('acorn/throw_error_exception'true$e)) {
  9.                 return false;
  10.             }
HandleExceptions->handleError(2, 'Attempt to read property "post_content" on null', '/home/goit/goit.global/dev/web/app/themes/goit-global/app/View/Composers/Post.php', 87) in /home/goit/goit.global/dev/web/app/themes/goit-global/app/View/Composers/Post.php (line 87)
  1. //        $word_count = str_word_count($clean_content);
  2. //        $time = ceil($word_count / 250);
  3. //        return $time;
  4.         $words_per_minutes 250;
  5.         $content_text is_single() ? get_the_content() : get_post(get_the_ID())->post_content;
  6.         $minutes round(count(preg_split('/\s/'$content_text)) / $words_per_minutes);
  7.         return $minutes;
  8.     }
  9. }
  1.     public function override()
  2.     {
  3.         return [
  4.             'title' => $this->title(),
  5.             'tags' => $this->tags(),
  6.             'readingTime' => $this->readingTime(),
  7.         ];
  8.     }
  9.     /**
  10.      * Returns the post title.
  1.     protected function merge()
  2.     {
  3.         return array_merge(
  4.             $this->with(),
  5.             $this->view->getData(),
  6.             $this->override()
  7.         );
  8.     }
  9.     /**
  10.      * Data to be passed to view before rendering
  1.     public function compose(View $view)
  2.     {
  3.         $this->view $view;
  4.         $this->data = new Fluent($view->getData());
  5.         $view->with($this->merge());
  6.     }
  7.     /**
  8.      * Data to be merged and passed to the view before rendering.
  9.      *
  1.         // Once we have the class and method name, we can build the Closure to resolve
  2.         // the instance out of the IoC container and call the method on it with the
  3.         // given arguments that are passed to the Closure as the composer's data.
  4.         return function () use ($class$method) {
  5.             return $this->container->make($class)->{$method}(...func_get_args());
  6.         };
  7.     }
  8.     /**
  9.      * Parse a class based composer name.
in /home/goit/goit.global/dev/vendor/illuminate/events/Dispatcher.php -> Illuminate\View\Concerns\{closure} (line 404)
  1.         return function ($event$payload) use ($listener$wildcard) {
  2.             if ($wildcard) {
  3.                 return $listener($event$payload);
  4.             }
  5.             return $listener(...array_values($payload));
  6.         };
  7.     }
  8.     /**
  9.      * Create a class based listener using the IoC container.
  1.         }
  2.         $responses = [];
  3.         foreach ($this->getListeners($event) as $listener) {
  4.             $response $listener($event$payload);
  5.             // If a response is returned from the listener and event halting is enabled
  6.             // we will just return this response, and not call the rest of the event
  7.             // listeners. Otherwise we will add the response on the response list.
  8.             if ($halt && ! is_null($response)) {
  1.      * @param  \Illuminate\Contracts\View\View  $view
  2.      * @return void
  3.      */
  4.     public function callComposer(ViewContract $view)
  5.     {
  6.         $this->events->dispatch('composing: '.$view->name(), [$view]);
  7.     }
  8.     /**
  9.      * Call the creator for a given view.
  10.      *
  1.         // We will keep track of the amount of views being rendered so we can flush
  2.         // the section after the complete rendering operation is done. This will
  3.         // clear out the sections for any separate views that may be rendered.
  4.         $this->factory->incrementRender();
  5.         $this->factory->callComposer($this);
  6.         $contents $this->getContents();
  7.         // Once we've finished rendering the view, we'll decrement the render count
  8.         // so that each sections get flushed out next time a view is created and
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <?php $__env->startSection('content'); ?>
  2.     <?php echo $__env->make('partials.page-heading'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  3.     <?php echo $__env->make('partials.content.404', ['section_id' => '404'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  4.     <?php if(!have_posts()): ?>
  5.         
  6.         
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
in /home/goit/goit.global/dev/vendor/illuminate/filesystem/Filesystem.php :: Illuminate\Filesystem\{closure} (line 108)
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         }
  2.         // Once we have the path to the compiled file, we will evaluate the paths with
  3.         // typical PHP just like any other templates. We also keep a stack of views
  4.         // which have been rendered for right exception messages to be generated.
  5.         $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         array_pop($this->lastCompiled);
  7.         return $results;
  8.     }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each sections get flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.     <?php wp_body_open(); ?>
  2.     <?php do_action('get_header'); ?>
  3.     <div id="app">
  4.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5.     </div>
  6.     <?php do_action('get_footer'); ?>
  7.     <?php wp_footer(); ?>
  8.     <?php if (get_field('binotel_hash')) { ?>
include('/home/goit/goit.global/dev/web/app/themes/goit-global/index.php') in /home/goit/goit.global/dev/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/goit/goit.global/dev/web/wp/wp-includes/template-loader.php') in /home/goit/goit.global/dev/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/home/goit/goit.global/dev/web/wp/wp-blog-header.php') in /home/goit/goit.global/dev/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

Stack Traces 2

[2/2] ViewException
Illuminate\View\ViewException:
Attempt to read property "post_content" on null (View: /home/goit/goit.global/dev/web/app/themes/goit-global/resources/views/404.blade.php)

  at /home/goit/goit.global/dev/web/app/themes/goit-global/app/View/Composers/Post.php:87
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ErrorException), 1)
     (/home/goit/goit.global/dev/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/goit/goit.global/dev/web/app/cache/acorn/framework/views/95d8668fd6d89662bc652978041ea081a0d34b28.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'GoIT Global', 'headerClass' => null, 'field' => array(false), 'copyright' => 'GoIT &copy; 2014 - 2024', 'category' => array(), 'section' => null, 'vform' => array('title' => '', 'description' => '', 'form' => '<div class="form-wrapper" data-form-name="candidate"><form action="https://dev.goit.global/wp/wp-admin/admin-post.php" data-form      class="zoho-integration form-register form-vacancies grid gap-3 w-full text-white">                            <input class="form-input name-validation" type="text"                       name="fields[user_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Π’Π°ΡˆΠ΅ Ім’я*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[user_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[user_email]"                       placeholder="Π’Π°ΡˆΠ° ΠŸΠΎΡˆΡ‚Π°*"  required  data-required="email"/>                                            <textarea class="form-input resize-none overflow-hidden"                          name="fields[user_message]"  placeholder="Π‘ΡƒΠΏΡ€ΠΎΠ²Ρ–Π΄Π½ΠΈΠΉ лист (Π½Π΅ ΠΎΠ±ΠΎΠ²\'язково)"></textarea>                                            <input class="form-input" type="url" placeholder="Посилання Π½Π° Facebook, LinkedIn Π°Π±ΠΎ CV "                       name="fields[cv_link]"                 />                                            <input class="form-input" type="file" accept=".doc,.docx,.pdf" name="cv_file"                       placeholder="ΠžΠ±Ρ€Π°Ρ‚ΠΈ Ρ„Π°ΠΉΠ»"  />                        <label class="form-term-label flex gap-3 items-center text-[0.625rem] leading-3 cursor-pointer">        <input class="form-term-checkbox visually-hidden" type="checkbox" name="user-policy" value="accept" required/>        <span class="form-custom-checkbox flex items-center justify-center shrink-0 w-6 h-6 rounded-2xl cursor-pointer transition-[transform,_border]">            <svg class="form-term-icon stroke-transparent transition-colors duration-300" width="14" height="11">                <use href="https://dev.goit.global/app/themes/goit-global/public/images/sprite.1aeab0.svg#check-icon"></use>            </svg>        </span>                <span>            <p>ΠŸΠΎΠ³ΠΎΠ΄ΠΆΡƒΡŽΡΡŒ Π½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ ΠΌΠΎΡ—Ρ… ΠΏΠ΅Ρ€ΡΠΎΠ½Π°Π»ΡŒΠ½ΠΈΡ… Π΄Π°Π½ΠΈΡ… Ρ– Π· ΠΏΡ€Π°Π²ΠΈΠ»Π°ΠΌΠΈ сайту</p>        </span>            </label>    <input type="hidden" name="action" value="zoho_connector_form">    <span class="event-data" data-eventvalue=""></span>            <input type="hidden" name="fields[product_name]" value="">        <input type="hidden" name="fields[product_id]" value="">            <input type="hidden" name="form_name" value="vacancies_form">    <input type="hidden" name="email_receiver" class="email-receiver" value="[email protected]">    <input type="hidden" name="vacancy_header" class="vacancy_header">    <button class="main-btn btn btn-primary text-center max-w-full" type="submit">Π’Ρ–Π΄ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ</button></form><div class="modal-message hidden p-4 w-full h-full items-center justify-center text-center rounded-2xl " data-messages>    <p class="text is-hidden" data-text-wait>                            <span> Π—Π°Ρ‡Π΅ΠΊΠ°ΠΉΡ‚Π΅ Π΄Π΅ΠΊΡ–Π»ΡŒΠΊΠ° сСкунд... ΠΌΠ°ΠΉΠΆΠ΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π»ΠΈ Π’Π°ΡˆΡƒ заявку</span>            </p>    <p class="text is-hidden" data-text-success>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085236/success-1.svg" alt="ΡƒΡΠΏΡ–ΡˆΠ½Π΅ виконання" width="144" height="152"/>                            <span> Дякуємо, інформація надіслана ΡƒΡΠΏΡ–ΡˆΠ½ΠΎ.Ми зв’яТСмося Π· Π²Π°ΠΌΠΈ якнайшвидшС.</span>            </p>    <p class="text is-hidden" data-text-error>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085545/error-1.svg" alt="ΠΏΠΎΠΌΠΈΠ»ΠΊΠ° Ρƒ Π²ΠΈΠΊΠΎΠ½Π°Π½Π½Ρ–" width="148" height="109"/>                            <span> Π’ΠΈΠ½ΠΈΠΊΠ»Π° ΠΏΠΎΠΌΠΈΠ»ΠΊΠ°,ΠΏΠΎΠ²Ρ‚ΠΎΡ€Ρ–Ρ‚ΡŒ спробу Ρ‰Π΅ Ρ€Π°Π·!</span>            </p>    <div class="progress mt-8 relative w-full h-2.5 rounded-2xl" data-progress>        <div class="color-line"></div>    </div></div></div><div class="form-wrapper" data-form-name="recomendation"><form action="https://dev.goit.global/wp/wp-admin/admin-post.php" data-form      class="zoho-integration form-register form-vacancies form-vacancies__candidate grid gap-3 w-full text-white">                            <input class="form-input name-validation" type="text"                       name="fields[user_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Π’Π°ΡˆΠ΅ Ім’я*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[user_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[user_email]"                       placeholder="Π’Π°ΡˆΠ° ΠŸΠΎΡˆΡ‚Π°*"  required  data-required="email"/>                                            <textarea class="form-input resize-none overflow-hidden"                          name="fields[user_message]"  placeholder="Π‘ΡƒΠΏΡ€ΠΎΠ²Ρ–Π΄Π½ΠΈΠΉ лист (Π½Π΅ ΠΎΠ±ΠΎΠ²\'язково)"></textarea>                                            <input class="form-input name-validation" type="text"                       name="fields[candidate_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Ім’я ΠΊΠ°Π½Π΄ΠΈΠ΄Π°Ρ‚Π°*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[candidate_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[candidate_email]"                       placeholder="ΠŸΠΎΡˆΡ‚Π° ΠΊΠ°Π½Π΄ΠΈΠ΄Π°Ρ‚Π°"  data-required="email"/>                                            <input class="form-input" type="url" placeholder="Посилання Π½Π° Facebook, LinkedIn Π°Π±ΠΎ CV "                       name="fields[cv_link]"                 />                                            <input class="form-input" type="file" accept=".doc,.docx,.pdf" name="cv_file"                       placeholder="ΠžΠ±Ρ€Π°Ρ‚ΠΈ Ρ„Π°ΠΉΠ»"  />                        <label class="form-term-label flex gap-3 items-center text-[0.625rem] leading-3 cursor-pointer">        <input class="form-term-checkbox visually-hidden" type="checkbox" name="user-policy" value="accept" required/>        <span class="form-custom-checkbox flex items-center justify-center shrink-0 w-6 h-6 rounded-2xl cursor-pointer transition-[transform,_border]">            <svg class="form-term-icon stroke-transparent transition-colors duration-300" width="14" height="11">                <use href="https://dev.goit.global/app/themes/goit-global/public/images/sprite.1aeab0.svg#check-icon"></use>            </svg>        </span>                <span>            <p>ΠŸΠΎΠ³ΠΎΠ΄ΠΆΡƒΡŽΡΡŒ Π½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ ΠΌΠΎΡ—Ρ… ΠΏΠ΅Ρ€ΡΠΎΠ½Π°Π»ΡŒΠ½ΠΈΡ… Π΄Π°Π½ΠΈΡ… Ρ– Π· ΠΏΡ€Π°Π²ΠΈΠ»Π°ΠΌΠΈ сайту</p>        </span>            </label>    <input type="hidden" name="action" value="zoho_connector_form">    <span class="event-data" data-eventvalue=""></span>            <input type="hidden" name="fields[product_name]" value="">        <input type="hidden" name="fields[product_id]" value="">            <input type="hidden" name="form_name" value="vacancies_form_candidate">    <input type="hidden" name="email_receiver" class="email-receiver" value="[email protected]">    <input type="hidden" name="vacancy_header" class="vacancy_header">    <button class="main-btn btn btn-primary text-center max-w-full" type="submit">Π’Ρ–Π΄ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ</button></form><div class="modal-message hidden p-4 w-full h-full items-center justify-center text-center rounded-2xl " data-messages>    <p class="text is-hidden" data-text-wait>                            <span> Π—Π°Ρ‡Π΅ΠΊΠ°ΠΉΡ‚Π΅ Π΄Π΅ΠΊΡ–Π»ΡŒΠΊΠ° сСкунд... ΠΌΠ°ΠΉΠΆΠ΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π»ΠΈ Π’Π°ΡˆΡƒ заявку</span>            </p>    <p class="text is-hidden" data-text-success>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085236/success-1.svg" alt="ΡƒΡΠΏΡ–ΡˆΠ½Π΅ виконання" width="144" height="152"/>                            <span> Дякуємо, інформація надіслана ΡƒΡΠΏΡ–ΡˆΠ½ΠΎ.Ми зв’яТСмося Π· Π²Π°ΠΌΠΈ якнайшвидшС.</span>            </p>    <p class="text is-hidden" data-text-error>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085545/error-1.svg" alt="ΠΏΠΎΠΌΠΈΠ»ΠΊΠ° Ρƒ Π²ΠΈΠΊΠΎΠ½Π°Π½Π½Ρ–" width="148" height="109"/>                            <span> Π’ΠΈΠ½ΠΈΠΊΠ»Π° ΠΏΠΎΠΌΠΈΠ»ΠΊΠ°,ΠΏΠΎΠ²Ρ‚ΠΎΡ€Ρ–Ρ‚ΡŒ спробу Ρ‰Π΅ Ρ€Π°Π·!</span>            </p>    <div class="progress mt-8 relative w-full h-2.5 rounded-2xl" data-progress>        <div class="color-line"></div>    </div></div></div>')))
     (/home/goit/goit.global/dev/vendor/illuminate/view/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get('/home/goit/goit.global/dev/web/app/themes/goit-global/resources/views/404.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'GoIT Global', 'headerClass' => null, 'field' => array(false), 'copyright' => 'GoIT &copy; 2014 - 2024', 'category' => array(), 'section' => null, 'vform' => array('title' => '', 'description' => '', 'form' => '<div class="form-wrapper" data-form-name="candidate"><form action="https://dev.goit.global/wp/wp-admin/admin-post.php" data-form      class="zoho-integration form-register form-vacancies grid gap-3 w-full text-white">                            <input class="form-input name-validation" type="text"                       name="fields[user_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Π’Π°ΡˆΠ΅ Ім’я*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[user_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[user_email]"                       placeholder="Π’Π°ΡˆΠ° ΠŸΠΎΡˆΡ‚Π°*"  required  data-required="email"/>                                            <textarea class="form-input resize-none overflow-hidden"                          name="fields[user_message]"  placeholder="Π‘ΡƒΠΏΡ€ΠΎΠ²Ρ–Π΄Π½ΠΈΠΉ лист (Π½Π΅ ΠΎΠ±ΠΎΠ²\'язково)"></textarea>                                            <input class="form-input" type="url" placeholder="Посилання Π½Π° Facebook, LinkedIn Π°Π±ΠΎ CV "                       name="fields[cv_link]"                 />                                            <input class="form-input" type="file" accept=".doc,.docx,.pdf" name="cv_file"                       placeholder="ΠžΠ±Ρ€Π°Ρ‚ΠΈ Ρ„Π°ΠΉΠ»"  />                        <label class="form-term-label flex gap-3 items-center text-[0.625rem] leading-3 cursor-pointer">        <input class="form-term-checkbox visually-hidden" type="checkbox" name="user-policy" value="accept" required/>        <span class="form-custom-checkbox flex items-center justify-center shrink-0 w-6 h-6 rounded-2xl cursor-pointer transition-[transform,_border]">            <svg class="form-term-icon stroke-transparent transition-colors duration-300" width="14" height="11">                <use href="https://dev.goit.global/app/themes/goit-global/public/images/sprite.1aeab0.svg#check-icon"></use>            </svg>        </span>                <span>            <p>ΠŸΠΎΠ³ΠΎΠ΄ΠΆΡƒΡŽΡΡŒ Π½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ ΠΌΠΎΡ—Ρ… ΠΏΠ΅Ρ€ΡΠΎΠ½Π°Π»ΡŒΠ½ΠΈΡ… Π΄Π°Π½ΠΈΡ… Ρ– Π· ΠΏΡ€Π°Π²ΠΈΠ»Π°ΠΌΠΈ сайту</p>        </span>            </label>    <input type="hidden" name="action" value="zoho_connector_form">    <span class="event-data" data-eventvalue=""></span>            <input type="hidden" name="fields[product_name]" value="">        <input type="hidden" name="fields[product_id]" value="">            <input type="hidden" name="form_name" value="vacancies_form">    <input type="hidden" name="email_receiver" class="email-receiver" value="[email protected]">    <input type="hidden" name="vacancy_header" class="vacancy_header">    <button class="main-btn btn btn-primary text-center max-w-full" type="submit">Π’Ρ–Π΄ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ</button></form><div class="modal-message hidden p-4 w-full h-full items-center justify-center text-center rounded-2xl " data-messages>    <p class="text is-hidden" data-text-wait>                            <span> Π—Π°Ρ‡Π΅ΠΊΠ°ΠΉΡ‚Π΅ Π΄Π΅ΠΊΡ–Π»ΡŒΠΊΠ° сСкунд... ΠΌΠ°ΠΉΠΆΠ΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π»ΠΈ Π’Π°ΡˆΡƒ заявку</span>            </p>    <p class="text is-hidden" data-text-success>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085236/success-1.svg" alt="ΡƒΡΠΏΡ–ΡˆΠ½Π΅ виконання" width="144" height="152"/>                            <span> Дякуємо, інформація надіслана ΡƒΡΠΏΡ–ΡˆΠ½ΠΎ.Ми зв’яТСмося Π· Π²Π°ΠΌΠΈ якнайшвидшС.</span>            </p>    <p class="text is-hidden" data-text-error>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085545/error-1.svg" alt="ΠΏΠΎΠΌΠΈΠ»ΠΊΠ° Ρƒ Π²ΠΈΠΊΠΎΠ½Π°Π½Π½Ρ–" width="148" height="109"/>                            <span> Π’ΠΈΠ½ΠΈΠΊΠ»Π° ΠΏΠΎΠΌΠΈΠ»ΠΊΠ°,ΠΏΠΎΠ²Ρ‚ΠΎΡ€Ρ–Ρ‚ΡŒ спробу Ρ‰Π΅ Ρ€Π°Π·!</span>            </p>    <div class="progress mt-8 relative w-full h-2.5 rounded-2xl" data-progress>        <div class="color-line"></div>    </div></div></div><div class="form-wrapper" data-form-name="recomendation"><form action="https://dev.goit.global/wp/wp-admin/admin-post.php" data-form      class="zoho-integration form-register form-vacancies form-vacancies__candidate grid gap-3 w-full text-white">                            <input class="form-input name-validation" type="text"                       name="fields[user_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Π’Π°ΡˆΠ΅ Ім’я*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[user_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[user_email]"                       placeholder="Π’Π°ΡˆΠ° ΠŸΠΎΡˆΡ‚Π°*"  required  data-required="email"/>                                            <textarea class="form-input resize-none overflow-hidden"                          name="fields[user_message]"  placeholder="Π‘ΡƒΠΏΡ€ΠΎΠ²Ρ–Π΄Π½ΠΈΠΉ лист (Π½Π΅ ΠΎΠ±ΠΎΠ²\'язково)"></textarea>                                            <input class="form-input name-validation" type="text"                       name="fields[candidate_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Ім’я ΠΊΠ°Π½Π΄ΠΈΠ΄Π°Ρ‚Π°*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[candidate_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[candidate_email]"                       placeholder="ΠŸΠΎΡˆΡ‚Π° ΠΊΠ°Π½Π΄ΠΈΠ΄Π°Ρ‚Π°"  data-required="email"/>                                            <input class="form-input" type="url" placeholder="Посилання Π½Π° Facebook, LinkedIn Π°Π±ΠΎ CV "                       name="fields[cv_link]"                 />                                            <input class="form-input" type="file" accept=".doc,.docx,.pdf" name="cv_file"                       placeholder="ΠžΠ±Ρ€Π°Ρ‚ΠΈ Ρ„Π°ΠΉΠ»"  />                        <label class="form-term-label flex gap-3 items-center text-[0.625rem] leading-3 cursor-pointer">        <input class="form-term-checkbox visually-hidden" type="checkbox" name="user-policy" value="accept" required/>        <span class="form-custom-checkbox flex items-center justify-center shrink-0 w-6 h-6 rounded-2xl cursor-pointer transition-[transform,_border]">            <svg class="form-term-icon stroke-transparent transition-colors duration-300" width="14" height="11">                <use href="https://dev.goit.global/app/themes/goit-global/public/images/sprite.1aeab0.svg#check-icon"></use>            </svg>        </span>                <span>            <p>ΠŸΠΎΠ³ΠΎΠ΄ΠΆΡƒΡŽΡΡŒ Π½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ ΠΌΠΎΡ—Ρ… ΠΏΠ΅Ρ€ΡΠΎΠ½Π°Π»ΡŒΠ½ΠΈΡ… Π΄Π°Π½ΠΈΡ… Ρ– Π· ΠΏΡ€Π°Π²ΠΈΠ»Π°ΠΌΠΈ сайту</p>        </span>            </label>    <input type="hidden" name="action" value="zoho_connector_form">    <span class="event-data" data-eventvalue=""></span>            <input type="hidden" name="fields[product_name]" value="">        <input type="hidden" name="fields[product_id]" value="">            <input type="hidden" name="form_name" value="vacancies_form_candidate">    <input type="hidden" name="email_receiver" class="email-receiver" value="[email protected]">    <input type="hidden" name="vacancy_header" class="vacancy_header">    <button class="main-btn btn btn-primary text-center max-w-full" type="submit">Π’Ρ–Π΄ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ</button></form><div class="modal-message hidden p-4 w-full h-full items-center justify-center text-center rounded-2xl " data-messages>    <p class="text is-hidden" data-text-wait>                            <span> Π—Π°Ρ‡Π΅ΠΊΠ°ΠΉΡ‚Π΅ Π΄Π΅ΠΊΡ–Π»ΡŒΠΊΠ° сСкунд... ΠΌΠ°ΠΉΠΆΠ΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π»ΠΈ Π’Π°ΡˆΡƒ заявку</span>            </p>    <p class="text is-hidden" data-text-success>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085236/success-1.svg" alt="ΡƒΡΠΏΡ–ΡˆΠ½Π΅ виконання" width="144" height="152"/>                            <span> Дякуємо, інформація надіслана ΡƒΡΠΏΡ–ΡˆΠ½ΠΎ.Ми зв’яТСмося Π· Π²Π°ΠΌΠΈ якнайшвидшС.</span>            </p>    <p class="text is-hidden" data-text-error>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085545/error-1.svg" alt="ΠΏΠΎΠΌΠΈΠ»ΠΊΠ° Ρƒ Π²ΠΈΠΊΠΎΠ½Π°Π½Π½Ρ–" width="148" height="109"/>                            <span> Π’ΠΈΠ½ΠΈΠΊΠ»Π° ΠΏΠΎΠΌΠΈΠ»ΠΊΠ°,ΠΏΠΎΠ²Ρ‚ΠΎΡ€Ρ–Ρ‚ΡŒ спробу Ρ‰Π΅ Ρ€Π°Π·!</span>            </p>    <div class="progress mt-8 relative w-full h-2.5 rounded-2xl" data-progress>        <div class="color-line"></div>    </div></div></div>')))
     (/home/goit/goit.global/dev/vendor/illuminate/view/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/goit/goit.global/dev/vendor/illuminate/view/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/goit/goit.global/dev/vendor/illuminate/view/View.php:91)
  at Illuminate\View\View->render()
     (/home/goit/goit.global/dev/web/app/themes/goit-global/index.php:119)
  at include('/home/goit/goit.global/dev/web/app/themes/goit-global/index.php')
     (/home/goit/goit.global/dev/web/wp/wp-includes/template-loader.php:106)
  at require_once('/home/goit/goit.global/dev/web/wp/wp-includes/template-loader.php')
     (/home/goit/goit.global/dev/web/wp/wp-blog-header.php:19)
  at require('/home/goit/goit.global/dev/web/wp/wp-blog-header.php')
     (/home/goit/goit.global/dev/web/index.php:6)                
[1/2] ErrorException
ErrorException:
Attempt to read property "post_content" on null

  at /home/goit/goit.global/dev/web/app/themes/goit-global/app/View/Composers/Post.php:87
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'Attempt to read property "post_content" on null', '/home/goit/goit.global/dev/web/app/themes/goit-global/app/View/Composers/Post.php', 87, array())
     (/home/goit/goit.global/dev/vendor/roots/acorn/src/Roots/Acorn/Bootstrap/HandleExceptions.php:54)
  at Roots\Acorn\Bootstrap\HandleExceptions->handleError(2, 'Attempt to read property "post_content" on null', '/home/goit/goit.global/dev/web/app/themes/goit-global/app/View/Composers/Post.php', 87)
     (/home/goit/goit.global/dev/web/app/themes/goit-global/app/View/Composers/Post.php:87)
  at App\View\Composers\Post->readingTime()
     (/home/goit/goit.global/dev/web/app/themes/goit-global/app/View/Composers/Post.php:30)
  at App\View\Composers\Post->override()
     (/home/goit/goit.global/dev/vendor/roots/acorn/src/Roots/Acorn/View/Composer.php:72)
  at Roots\Acorn\View\Composer->merge()
     (/home/goit/goit.global/dev/vendor/roots/acorn/src/Roots/Acorn/View/Composer.php:59)
  at Roots\Acorn\View\Composer->compose(object(View))
     (/home/goit/goit.global/dev/vendor/illuminate/view/Concerns/ManagesEvents.php:124)
  at Illuminate\View\Factory->Illuminate\View\Concerns\{closure}(object(View))
     (/home/goit/goit.global/dev/vendor/illuminate/events/Dispatcher.php:404)
  at Illuminate\Events\Dispatcher->Illuminate\Events\{closure}('composing: partials.page-heading', array(object(View)))
     (/home/goit/goit.global/dev/vendor/illuminate/events/Dispatcher.php:249)
  at Illuminate\Events\Dispatcher->dispatch('composing: partials.page-heading', array(object(View)))
     (/home/goit/goit.global/dev/vendor/illuminate/view/Concerns/ManagesEvents.php:177)
  at Illuminate\View\Factory->callComposer(object(View))
     (/home/goit/goit.global/dev/vendor/illuminate/view/View.php:120)
  at Illuminate\View\View->renderContents()
     (/home/goit/goit.global/dev/vendor/illuminate/view/View.php:91)
  at Illuminate\View\View->render()
     (/home/goit/goit.global/dev/web/app/cache/acorn/framework/views/95d8668fd6d89662bc652978041ea081a0d34b28.php:2)
  at require('/home/goit/goit.global/dev/web/app/cache/acorn/framework/views/95d8668fd6d89662bc652978041ea081a0d34b28.php')
     (/home/goit/goit.global/dev/vendor/illuminate/filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/goit/goit.global/dev/vendor/illuminate/filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire('/home/goit/goit.global/dev/web/app/cache/acorn/framework/views/95d8668fd6d89662bc652978041ea081a0d34b28.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'GoIT Global', 'headerClass' => null, 'field' => array(false), 'copyright' => 'GoIT &copy; 2014 - 2024', 'category' => array(), 'section' => null, 'vform' => array('title' => '', 'description' => '', 'form' => '<div class="form-wrapper" data-form-name="candidate"><form action="https://dev.goit.global/wp/wp-admin/admin-post.php" data-form      class="zoho-integration form-register form-vacancies grid gap-3 w-full text-white">                            <input class="form-input name-validation" type="text"                       name="fields[user_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Π’Π°ΡˆΠ΅ Ім’я*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[user_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[user_email]"                       placeholder="Π’Π°ΡˆΠ° ΠŸΠΎΡˆΡ‚Π°*"  required  data-required="email"/>                                            <textarea class="form-input resize-none overflow-hidden"                          name="fields[user_message]"  placeholder="Π‘ΡƒΠΏΡ€ΠΎΠ²Ρ–Π΄Π½ΠΈΠΉ лист (Π½Π΅ ΠΎΠ±ΠΎΠ²\'язково)"></textarea>                                            <input class="form-input" type="url" placeholder="Посилання Π½Π° Facebook, LinkedIn Π°Π±ΠΎ CV "                       name="fields[cv_link]"                 />                                            <input class="form-input" type="file" accept=".doc,.docx,.pdf" name="cv_file"                       placeholder="ΠžΠ±Ρ€Π°Ρ‚ΠΈ Ρ„Π°ΠΉΠ»"  />                        <label class="form-term-label flex gap-3 items-center text-[0.625rem] leading-3 cursor-pointer">        <input class="form-term-checkbox visually-hidden" type="checkbox" name="user-policy" value="accept" required/>        <span class="form-custom-checkbox flex items-center justify-center shrink-0 w-6 h-6 rounded-2xl cursor-pointer transition-[transform,_border]">            <svg class="form-term-icon stroke-transparent transition-colors duration-300" width="14" height="11">                <use href="https://dev.goit.global/app/themes/goit-global/public/images/sprite.1aeab0.svg#check-icon"></use>            </svg>        </span>                <span>            <p>ΠŸΠΎΠ³ΠΎΠ΄ΠΆΡƒΡŽΡΡŒ Π½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ ΠΌΠΎΡ—Ρ… ΠΏΠ΅Ρ€ΡΠΎΠ½Π°Π»ΡŒΠ½ΠΈΡ… Π΄Π°Π½ΠΈΡ… Ρ– Π· ΠΏΡ€Π°Π²ΠΈΠ»Π°ΠΌΠΈ сайту</p>        </span>            </label>    <input type="hidden" name="action" value="zoho_connector_form">    <span class="event-data" data-eventvalue=""></span>            <input type="hidden" name="fields[product_name]" value="">        <input type="hidden" name="fields[product_id]" value="">            <input type="hidden" name="form_name" value="vacancies_form">    <input type="hidden" name="email_receiver" class="email-receiver" value="[email protected]">    <input type="hidden" name="vacancy_header" class="vacancy_header">    <button class="main-btn btn btn-primary text-center max-w-full" type="submit">Π’Ρ–Π΄ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ</button></form><div class="modal-message hidden p-4 w-full h-full items-center justify-center text-center rounded-2xl " data-messages>    <p class="text is-hidden" data-text-wait>                            <span> Π—Π°Ρ‡Π΅ΠΊΠ°ΠΉΡ‚Π΅ Π΄Π΅ΠΊΡ–Π»ΡŒΠΊΠ° сСкунд... ΠΌΠ°ΠΉΠΆΠ΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π»ΠΈ Π’Π°ΡˆΡƒ заявку</span>            </p>    <p class="text is-hidden" data-text-success>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085236/success-1.svg" alt="ΡƒΡΠΏΡ–ΡˆΠ½Π΅ виконання" width="144" height="152"/>                            <span> Дякуємо, інформація надіслана ΡƒΡΠΏΡ–ΡˆΠ½ΠΎ.Ми зв’яТСмося Π· Π²Π°ΠΌΠΈ якнайшвидшС.</span>            </p>    <p class="text is-hidden" data-text-error>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085545/error-1.svg" alt="ΠΏΠΎΠΌΠΈΠ»ΠΊΠ° Ρƒ Π²ΠΈΠΊΠΎΠ½Π°Π½Π½Ρ–" width="148" height="109"/>                            <span> Π’ΠΈΠ½ΠΈΠΊΠ»Π° ΠΏΠΎΠΌΠΈΠ»ΠΊΠ°,ΠΏΠΎΠ²Ρ‚ΠΎΡ€Ρ–Ρ‚ΡŒ спробу Ρ‰Π΅ Ρ€Π°Π·!</span>            </p>    <div class="progress mt-8 relative w-full h-2.5 rounded-2xl" data-progress>        <div class="color-line"></div>    </div></div></div><div class="form-wrapper" data-form-name="recomendation"><form action="https://dev.goit.global/wp/wp-admin/admin-post.php" data-form      class="zoho-integration form-register form-vacancies form-vacancies__candidate grid gap-3 w-full text-white">                            <input class="form-input name-validation" type="text"                       name="fields[user_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Π’Π°ΡˆΠ΅ Ім’я*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[user_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[user_email]"                       placeholder="Π’Π°ΡˆΠ° ΠŸΠΎΡˆΡ‚Π°*"  required  data-required="email"/>                                            <textarea class="form-input resize-none overflow-hidden"                          name="fields[user_message]"  placeholder="Π‘ΡƒΠΏΡ€ΠΎΠ²Ρ–Π΄Π½ΠΈΠΉ лист (Π½Π΅ ΠΎΠ±ΠΎΠ²\'язково)"></textarea>                                            <input class="form-input name-validation" type="text"                       name="fields[candidate_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Ім’я ΠΊΠ°Π½Π΄ΠΈΠ΄Π°Ρ‚Π°*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[candidate_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[candidate_email]"                       placeholder="ΠŸΠΎΡˆΡ‚Π° ΠΊΠ°Π½Π΄ΠΈΠ΄Π°Ρ‚Π°"  data-required="email"/>                                            <input class="form-input" type="url" placeholder="Посилання Π½Π° Facebook, LinkedIn Π°Π±ΠΎ CV "                       name="fields[cv_link]"                 />                                            <input class="form-input" type="file" accept=".doc,.docx,.pdf" name="cv_file"                       placeholder="ΠžΠ±Ρ€Π°Ρ‚ΠΈ Ρ„Π°ΠΉΠ»"  />                        <label class="form-term-label flex gap-3 items-center text-[0.625rem] leading-3 cursor-pointer">        <input class="form-term-checkbox visually-hidden" type="checkbox" name="user-policy" value="accept" required/>        <span class="form-custom-checkbox flex items-center justify-center shrink-0 w-6 h-6 rounded-2xl cursor-pointer transition-[transform,_border]">            <svg class="form-term-icon stroke-transparent transition-colors duration-300" width="14" height="11">                <use href="https://dev.goit.global/app/themes/goit-global/public/images/sprite.1aeab0.svg#check-icon"></use>            </svg>        </span>                <span>            <p>ΠŸΠΎΠ³ΠΎΠ΄ΠΆΡƒΡŽΡΡŒ Π½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ ΠΌΠΎΡ—Ρ… ΠΏΠ΅Ρ€ΡΠΎΠ½Π°Π»ΡŒΠ½ΠΈΡ… Π΄Π°Π½ΠΈΡ… Ρ– Π· ΠΏΡ€Π°Π²ΠΈΠ»Π°ΠΌΠΈ сайту</p>        </span>            </label>    <input type="hidden" name="action" value="zoho_connector_form">    <span class="event-data" data-eventvalue=""></span>            <input type="hidden" name="fields[product_name]" value="">        <input type="hidden" name="fields[product_id]" value="">            <input type="hidden" name="form_name" value="vacancies_form_candidate">    <input type="hidden" name="email_receiver" class="email-receiver" value="[email protected]">    <input type="hidden" name="vacancy_header" class="vacancy_header">    <button class="main-btn btn btn-primary text-center max-w-full" type="submit">Π’Ρ–Π΄ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ</button></form><div class="modal-message hidden p-4 w-full h-full items-center justify-center text-center rounded-2xl " data-messages>    <p class="text is-hidden" data-text-wait>                            <span> Π—Π°Ρ‡Π΅ΠΊΠ°ΠΉΡ‚Π΅ Π΄Π΅ΠΊΡ–Π»ΡŒΠΊΠ° сСкунд... ΠΌΠ°ΠΉΠΆΠ΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π»ΠΈ Π’Π°ΡˆΡƒ заявку</span>            </p>    <p class="text is-hidden" data-text-success>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085236/success-1.svg" alt="ΡƒΡΠΏΡ–ΡˆΠ½Π΅ виконання" width="144" height="152"/>                            <span> Дякуємо, інформація надіслана ΡƒΡΠΏΡ–ΡˆΠ½ΠΎ.Ми зв’яТСмося Π· Π²Π°ΠΌΠΈ якнайшвидшС.</span>            </p>    <p class="text is-hidden" data-text-error>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085545/error-1.svg" alt="ΠΏΠΎΠΌΠΈΠ»ΠΊΠ° Ρƒ Π²ΠΈΠΊΠΎΠ½Π°Π½Π½Ρ–" width="148" height="109"/>                            <span> Π’ΠΈΠ½ΠΈΠΊΠ»Π° ΠΏΠΎΠΌΠΈΠ»ΠΊΠ°,ΠΏΠΎΠ²Ρ‚ΠΎΡ€Ρ–Ρ‚ΡŒ спробу Ρ‰Π΅ Ρ€Π°Π·!</span>            </p>    <div class="progress mt-8 relative w-full h-2.5 rounded-2xl" data-progress>        <div class="color-line"></div>    </div></div></div>')))
     (/home/goit/goit.global/dev/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/goit/goit.global/dev/web/app/cache/acorn/framework/views/95d8668fd6d89662bc652978041ea081a0d34b28.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'GoIT Global', 'headerClass' => null, 'field' => array(false), 'copyright' => 'GoIT &copy; 2014 - 2024', 'category' => array(), 'section' => null, 'vform' => array('title' => '', 'description' => '', 'form' => '<div class="form-wrapper" data-form-name="candidate"><form action="https://dev.goit.global/wp/wp-admin/admin-post.php" data-form      class="zoho-integration form-register form-vacancies grid gap-3 w-full text-white">                            <input class="form-input name-validation" type="text"                       name="fields[user_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Π’Π°ΡˆΠ΅ Ім’я*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[user_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[user_email]"                       placeholder="Π’Π°ΡˆΠ° ΠŸΠΎΡˆΡ‚Π°*"  required  data-required="email"/>                                            <textarea class="form-input resize-none overflow-hidden"                          name="fields[user_message]"  placeholder="Π‘ΡƒΠΏΡ€ΠΎΠ²Ρ–Π΄Π½ΠΈΠΉ лист (Π½Π΅ ΠΎΠ±ΠΎΠ²\'язково)"></textarea>                                            <input class="form-input" type="url" placeholder="Посилання Π½Π° Facebook, LinkedIn Π°Π±ΠΎ CV "                       name="fields[cv_link]"                 />                                            <input class="form-input" type="file" accept=".doc,.docx,.pdf" name="cv_file"                       placeholder="ΠžΠ±Ρ€Π°Ρ‚ΠΈ Ρ„Π°ΠΉΠ»"  />                        <label class="form-term-label flex gap-3 items-center text-[0.625rem] leading-3 cursor-pointer">        <input class="form-term-checkbox visually-hidden" type="checkbox" name="user-policy" value="accept" required/>        <span class="form-custom-checkbox flex items-center justify-center shrink-0 w-6 h-6 rounded-2xl cursor-pointer transition-[transform,_border]">            <svg class="form-term-icon stroke-transparent transition-colors duration-300" width="14" height="11">                <use href="https://dev.goit.global/app/themes/goit-global/public/images/sprite.1aeab0.svg#check-icon"></use>            </svg>        </span>                <span>            <p>ΠŸΠΎΠ³ΠΎΠ΄ΠΆΡƒΡŽΡΡŒ Π½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ ΠΌΠΎΡ—Ρ… ΠΏΠ΅Ρ€ΡΠΎΠ½Π°Π»ΡŒΠ½ΠΈΡ… Π΄Π°Π½ΠΈΡ… Ρ– Π· ΠΏΡ€Π°Π²ΠΈΠ»Π°ΠΌΠΈ сайту</p>        </span>            </label>    <input type="hidden" name="action" value="zoho_connector_form">    <span class="event-data" data-eventvalue=""></span>            <input type="hidden" name="fields[product_name]" value="">        <input type="hidden" name="fields[product_id]" value="">            <input type="hidden" name="form_name" value="vacancies_form">    <input type="hidden" name="email_receiver" class="email-receiver" value="[email protected]">    <input type="hidden" name="vacancy_header" class="vacancy_header">    <button class="main-btn btn btn-primary text-center max-w-full" type="submit">Π’Ρ–Π΄ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ</button></form><div class="modal-message hidden p-4 w-full h-full items-center justify-center text-center rounded-2xl " data-messages>    <p class="text is-hidden" data-text-wait>                            <span> Π—Π°Ρ‡Π΅ΠΊΠ°ΠΉΡ‚Π΅ Π΄Π΅ΠΊΡ–Π»ΡŒΠΊΠ° сСкунд... ΠΌΠ°ΠΉΠΆΠ΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π»ΠΈ Π’Π°ΡˆΡƒ заявку</span>            </p>    <p class="text is-hidden" data-text-success>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085236/success-1.svg" alt="ΡƒΡΠΏΡ–ΡˆΠ½Π΅ виконання" width="144" height="152"/>                            <span> Дякуємо, інформація надіслана ΡƒΡΠΏΡ–ΡˆΠ½ΠΎ.Ми зв’яТСмося Π· Π²Π°ΠΌΠΈ якнайшвидшС.</span>            </p>    <p class="text is-hidden" data-text-error>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085545/error-1.svg" alt="ΠΏΠΎΠΌΠΈΠ»ΠΊΠ° Ρƒ Π²ΠΈΠΊΠΎΠ½Π°Π½Π½Ρ–" width="148" height="109"/>                            <span> Π’ΠΈΠ½ΠΈΠΊΠ»Π° ΠΏΠΎΠΌΠΈΠ»ΠΊΠ°,ΠΏΠΎΠ²Ρ‚ΠΎΡ€Ρ–Ρ‚ΡŒ спробу Ρ‰Π΅ Ρ€Π°Π·!</span>            </p>    <div class="progress mt-8 relative w-full h-2.5 rounded-2xl" data-progress>        <div class="color-line"></div>    </div></div></div><div class="form-wrapper" data-form-name="recomendation"><form action="https://dev.goit.global/wp/wp-admin/admin-post.php" data-form      class="zoho-integration form-register form-vacancies form-vacancies__candidate grid gap-3 w-full text-white">                            <input class="form-input name-validation" type="text"                       name="fields[user_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Π’Π°ΡˆΠ΅ Ім’я*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[user_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[user_email]"                       placeholder="Π’Π°ΡˆΠ° ΠŸΠΎΡˆΡ‚Π°*"  required  data-required="email"/>                                            <textarea class="form-input resize-none overflow-hidden"                          name="fields[user_message]"  placeholder="Π‘ΡƒΠΏΡ€ΠΎΠ²Ρ–Π΄Π½ΠΈΠΉ лист (Π½Π΅ ΠΎΠ±ΠΎΠ²\'язково)"></textarea>                                            <input class="form-input name-validation" type="text"                       name="fields[candidate_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Ім’я ΠΊΠ°Π½Π΄ΠΈΠ΄Π°Ρ‚Π°*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[candidate_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[candidate_email]"                       placeholder="ΠŸΠΎΡˆΡ‚Π° ΠΊΠ°Π½Π΄ΠΈΠ΄Π°Ρ‚Π°"  data-required="email"/>                                            <input class="form-input" type="url" placeholder="Посилання Π½Π° Facebook, LinkedIn Π°Π±ΠΎ CV "                       name="fields[cv_link]"                 />                                            <input class="form-input" type="file" accept=".doc,.docx,.pdf" name="cv_file"                       placeholder="ΠžΠ±Ρ€Π°Ρ‚ΠΈ Ρ„Π°ΠΉΠ»"  />                        <label class="form-term-label flex gap-3 items-center text-[0.625rem] leading-3 cursor-pointer">        <input class="form-term-checkbox visually-hidden" type="checkbox" name="user-policy" value="accept" required/>        <span class="form-custom-checkbox flex items-center justify-center shrink-0 w-6 h-6 rounded-2xl cursor-pointer transition-[transform,_border]">            <svg class="form-term-icon stroke-transparent transition-colors duration-300" width="14" height="11">                <use href="https://dev.goit.global/app/themes/goit-global/public/images/sprite.1aeab0.svg#check-icon"></use>            </svg>        </span>                <span>            <p>ΠŸΠΎΠ³ΠΎΠ΄ΠΆΡƒΡŽΡΡŒ Π½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ ΠΌΠΎΡ—Ρ… ΠΏΠ΅Ρ€ΡΠΎΠ½Π°Π»ΡŒΠ½ΠΈΡ… Π΄Π°Π½ΠΈΡ… Ρ– Π· ΠΏΡ€Π°Π²ΠΈΠ»Π°ΠΌΠΈ сайту</p>        </span>            </label>    <input type="hidden" name="action" value="zoho_connector_form">    <span class="event-data" data-eventvalue=""></span>            <input type="hidden" name="fields[product_name]" value="">        <input type="hidden" name="fields[product_id]" value="">            <input type="hidden" name="form_name" value="vacancies_form_candidate">    <input type="hidden" name="email_receiver" class="email-receiver" value="[email protected]">    <input type="hidden" name="vacancy_header" class="vacancy_header">    <button class="main-btn btn btn-primary text-center max-w-full" type="submit">Π’Ρ–Π΄ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ</button></form><div class="modal-message hidden p-4 w-full h-full items-center justify-center text-center rounded-2xl " data-messages>    <p class="text is-hidden" data-text-wait>                            <span> Π—Π°Ρ‡Π΅ΠΊΠ°ΠΉΡ‚Π΅ Π΄Π΅ΠΊΡ–Π»ΡŒΠΊΠ° сСкунд... ΠΌΠ°ΠΉΠΆΠ΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π»ΠΈ Π’Π°ΡˆΡƒ заявку</span>            </p>    <p class="text is-hidden" data-text-success>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085236/success-1.svg" alt="ΡƒΡΠΏΡ–ΡˆΠ½Π΅ виконання" width="144" height="152"/>                            <span> Дякуємо, інформація надіслана ΡƒΡΠΏΡ–ΡˆΠ½ΠΎ.Ми зв’яТСмося Π· Π²Π°ΠΌΠΈ якнайшвидшС.</span>            </p>    <p class="text is-hidden" data-text-error>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085545/error-1.svg" alt="ΠΏΠΎΠΌΠΈΠ»ΠΊΠ° Ρƒ Π²ΠΈΠΊΠΎΠ½Π°Π½Π½Ρ–" width="148" height="109"/>                            <span> Π’ΠΈΠ½ΠΈΠΊΠ»Π° ΠΏΠΎΠΌΠΈΠ»ΠΊΠ°,ΠΏΠΎΠ²Ρ‚ΠΎΡ€Ρ–Ρ‚ΡŒ спробу Ρ‰Π΅ Ρ€Π°Π·!</span>            </p>    <div class="progress mt-8 relative w-full h-2.5 rounded-2xl" data-progress>        <div class="color-line"></div>    </div></div></div>')))
     (/home/goit/goit.global/dev/vendor/illuminate/view/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get('/home/goit/goit.global/dev/web/app/themes/goit-global/resources/views/404.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'GoIT Global', 'headerClass' => null, 'field' => array(false), 'copyright' => 'GoIT &copy; 2014 - 2024', 'category' => array(), 'section' => null, 'vform' => array('title' => '', 'description' => '', 'form' => '<div class="form-wrapper" data-form-name="candidate"><form action="https://dev.goit.global/wp/wp-admin/admin-post.php" data-form      class="zoho-integration form-register form-vacancies grid gap-3 w-full text-white">                            <input class="form-input name-validation" type="text"                       name="fields[user_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Π’Π°ΡˆΠ΅ Ім’я*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[user_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[user_email]"                       placeholder="Π’Π°ΡˆΠ° ΠŸΠΎΡˆΡ‚Π°*"  required  data-required="email"/>                                            <textarea class="form-input resize-none overflow-hidden"                          name="fields[user_message]"  placeholder="Π‘ΡƒΠΏΡ€ΠΎΠ²Ρ–Π΄Π½ΠΈΠΉ лист (Π½Π΅ ΠΎΠ±ΠΎΠ²\'язково)"></textarea>                                            <input class="form-input" type="url" placeholder="Посилання Π½Π° Facebook, LinkedIn Π°Π±ΠΎ CV "                       name="fields[cv_link]"                 />                                            <input class="form-input" type="file" accept=".doc,.docx,.pdf" name="cv_file"                       placeholder="ΠžΠ±Ρ€Π°Ρ‚ΠΈ Ρ„Π°ΠΉΠ»"  />                        <label class="form-term-label flex gap-3 items-center text-[0.625rem] leading-3 cursor-pointer">        <input class="form-term-checkbox visually-hidden" type="checkbox" name="user-policy" value="accept" required/>        <span class="form-custom-checkbox flex items-center justify-center shrink-0 w-6 h-6 rounded-2xl cursor-pointer transition-[transform,_border]">            <svg class="form-term-icon stroke-transparent transition-colors duration-300" width="14" height="11">                <use href="https://dev.goit.global/app/themes/goit-global/public/images/sprite.1aeab0.svg#check-icon"></use>            </svg>        </span>                <span>            <p>ΠŸΠΎΠ³ΠΎΠ΄ΠΆΡƒΡŽΡΡŒ Π½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ ΠΌΠΎΡ—Ρ… ΠΏΠ΅Ρ€ΡΠΎΠ½Π°Π»ΡŒΠ½ΠΈΡ… Π΄Π°Π½ΠΈΡ… Ρ– Π· ΠΏΡ€Π°Π²ΠΈΠ»Π°ΠΌΠΈ сайту</p>        </span>            </label>    <input type="hidden" name="action" value="zoho_connector_form">    <span class="event-data" data-eventvalue=""></span>            <input type="hidden" name="fields[product_name]" value="">        <input type="hidden" name="fields[product_id]" value="">            <input type="hidden" name="form_name" value="vacancies_form">    <input type="hidden" name="email_receiver" class="email-receiver" value="[email protected]">    <input type="hidden" name="vacancy_header" class="vacancy_header">    <button class="main-btn btn btn-primary text-center max-w-full" type="submit">Π’Ρ–Π΄ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ</button></form><div class="modal-message hidden p-4 w-full h-full items-center justify-center text-center rounded-2xl " data-messages>    <p class="text is-hidden" data-text-wait>                            <span> Π—Π°Ρ‡Π΅ΠΊΠ°ΠΉΡ‚Π΅ Π΄Π΅ΠΊΡ–Π»ΡŒΠΊΠ° сСкунд... ΠΌΠ°ΠΉΠΆΠ΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π»ΠΈ Π’Π°ΡˆΡƒ заявку</span>            </p>    <p class="text is-hidden" data-text-success>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085236/success-1.svg" alt="ΡƒΡΠΏΡ–ΡˆΠ½Π΅ виконання" width="144" height="152"/>                            <span> Дякуємо, інформація надіслана ΡƒΡΠΏΡ–ΡˆΠ½ΠΎ.Ми зв’яТСмося Π· Π²Π°ΠΌΠΈ якнайшвидшС.</span>            </p>    <p class="text is-hidden" data-text-error>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085545/error-1.svg" alt="ΠΏΠΎΠΌΠΈΠ»ΠΊΠ° Ρƒ Π²ΠΈΠΊΠΎΠ½Π°Π½Π½Ρ–" width="148" height="109"/>                            <span> Π’ΠΈΠ½ΠΈΠΊΠ»Π° ΠΏΠΎΠΌΠΈΠ»ΠΊΠ°,ΠΏΠΎΠ²Ρ‚ΠΎΡ€Ρ–Ρ‚ΡŒ спробу Ρ‰Π΅ Ρ€Π°Π·!</span>            </p>    <div class="progress mt-8 relative w-full h-2.5 rounded-2xl" data-progress>        <div class="color-line"></div>    </div></div></div><div class="form-wrapper" data-form-name="recomendation"><form action="https://dev.goit.global/wp/wp-admin/admin-post.php" data-form      class="zoho-integration form-register form-vacancies form-vacancies__candidate grid gap-3 w-full text-white">                            <input class="form-input name-validation" type="text"                       name="fields[user_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Π’Π°ΡˆΠ΅ Ім’я*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[user_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[user_email]"                       placeholder="Π’Π°ΡˆΠ° ΠŸΠΎΡˆΡ‚Π°*"  required  data-required="email"/>                                            <textarea class="form-input resize-none overflow-hidden"                          name="fields[user_message]"  placeholder="Π‘ΡƒΠΏΡ€ΠΎΠ²Ρ–Π΄Π½ΠΈΠΉ лист (Π½Π΅ ΠΎΠ±ΠΎΠ²\'язково)"></textarea>                                            <input class="form-input name-validation" type="text"                       name="fields[candidate_name]"  required                        minlength="2" maxlength="30" data-required="name" placeholder="Ім’я ΠΊΠ°Π½Π΄ΠΈΠ΄Π°Ρ‚Π°*"/>                                            <input class="form-input phone-validation" type="tel" pattern="[0-9]+"                       name="fields[candidate_phone]"  required                        data-required="phone"/>                                            <input class="form-input email-validation" type="email" maxlength="63" name="fields[candidate_email]"                       placeholder="ΠŸΠΎΡˆΡ‚Π° ΠΊΠ°Π½Π΄ΠΈΠ΄Π°Ρ‚Π°"  data-required="email"/>                                            <input class="form-input" type="url" placeholder="Посилання Π½Π° Facebook, LinkedIn Π°Π±ΠΎ CV "                       name="fields[cv_link]"                 />                                            <input class="form-input" type="file" accept=".doc,.docx,.pdf" name="cv_file"                       placeholder="ΠžΠ±Ρ€Π°Ρ‚ΠΈ Ρ„Π°ΠΉΠ»"  />                        <label class="form-term-label flex gap-3 items-center text-[0.625rem] leading-3 cursor-pointer">        <input class="form-term-checkbox visually-hidden" type="checkbox" name="user-policy" value="accept" required/>        <span class="form-custom-checkbox flex items-center justify-center shrink-0 w-6 h-6 rounded-2xl cursor-pointer transition-[transform,_border]">            <svg class="form-term-icon stroke-transparent transition-colors duration-300" width="14" height="11">                <use href="https://dev.goit.global/app/themes/goit-global/public/images/sprite.1aeab0.svg#check-icon"></use>            </svg>        </span>                <span>            <p>ΠŸΠΎΠ³ΠΎΠ΄ΠΆΡƒΡŽΡΡŒ Π½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ ΠΌΠΎΡ—Ρ… ΠΏΠ΅Ρ€ΡΠΎΠ½Π°Π»ΡŒΠ½ΠΈΡ… Π΄Π°Π½ΠΈΡ… Ρ– Π· ΠΏΡ€Π°Π²ΠΈΠ»Π°ΠΌΠΈ сайту</p>        </span>            </label>    <input type="hidden" name="action" value="zoho_connector_form">    <span class="event-data" data-eventvalue=""></span>            <input type="hidden" name="fields[product_name]" value="">        <input type="hidden" name="fields[product_id]" value="">            <input type="hidden" name="form_name" value="vacancies_form_candidate">    <input type="hidden" name="email_receiver" class="email-receiver" value="[email protected]">    <input type="hidden" name="vacancy_header" class="vacancy_header">    <button class="main-btn btn btn-primary text-center max-w-full" type="submit">Π’Ρ–Π΄ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ</button></form><div class="modal-message hidden p-4 w-full h-full items-center justify-center text-center rounded-2xl " data-messages>    <p class="text is-hidden" data-text-wait>                            <span> Π—Π°Ρ‡Π΅ΠΊΠ°ΠΉΡ‚Π΅ Π΄Π΅ΠΊΡ–Π»ΡŒΠΊΠ° сСкунд... ΠΌΠ°ΠΉΠΆΠ΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π»ΠΈ Π’Π°ΡˆΡƒ заявку</span>            </p>    <p class="text is-hidden" data-text-success>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085236/success-1.svg" alt="ΡƒΡΠΏΡ–ΡˆΠ½Π΅ виконання" width="144" height="152"/>                            <span> Дякуємо, інформація надіслана ΡƒΡΠΏΡ–ΡˆΠ½ΠΎ.Ми зв’яТСмося Π· Π²Π°ΠΌΠΈ якнайшвидшС.</span>            </p>    <p class="text is-hidden" data-text-error>                    <img src="https://web-dev-goit.s3.eu-north-1.amazonaws.com/app/uploads/2022/10/20085545/error-1.svg" alt="ΠΏΠΎΠΌΠΈΠ»ΠΊΠ° Ρƒ Π²ΠΈΠΊΠΎΠ½Π°Π½Π½Ρ–" width="148" height="109"/>                            <span> Π’ΠΈΠ½ΠΈΠΊΠ»Π° ΠΏΠΎΠΌΠΈΠ»ΠΊΠ°,ΠΏΠΎΠ²Ρ‚ΠΎΡ€Ρ–Ρ‚ΡŒ спробу Ρ‰Π΅ Ρ€Π°Π·!</span>            </p>    <div class="progress mt-8 relative w-full h-2.5 rounded-2xl" data-progress>        <div class="color-line"></div>    </div></div></div>')))
     (/home/goit/goit.global/dev/vendor/illuminate/view/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/goit/goit.global/dev/vendor/illuminate/view/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/goit/goit.global/dev/vendor/illuminate/view/View.php:91)
  at Illuminate\View\View->render()
     (/home/goit/goit.global/dev/web/app/themes/goit-global/index.php:119)
  at include('/home/goit/goit.global/dev/web/app/themes/goit-global/index.php')
     (/home/goit/goit.global/dev/web/wp/wp-includes/template-loader.php:106)
  at require_once('/home/goit/goit.global/dev/web/wp/wp-includes/template-loader.php')
     (/home/goit/goit.global/dev/web/wp/wp-blog-header.php:19)
  at require('/home/goit/goit.global/dev/web/wp/wp-blog-header.php')
     (/home/goit/goit.global/dev/web/index.php:6)