@if (config('app.is_demo')) @endif {{-- --}} @stack('css')
@guest @yield('content') @endguest @auth @if (str_contains(request()->url(), 'rtl') || str_contains(request()->url(), 'pricing-page') || in_array( request()->route()->getName(), ['signins', 'signups', 'resets', 'locks', 'verifications', 'errors'])) @yield('content') @else @if (str_contains(request()->url(), 'landing')) @include('components.headers.hero', ['height' => 'h-100']) @include('layouts.navbars.auth.sidenav', [ 'box' => 'box-shadow-none', 'logo' => '/assets/img/logo-ct.png', ]) @elseif (!str_contains(request()->url(), 'vr')) @if (Route::currentRouteName() == 'profiles' || str_contains(request()->url(), 'new-product')) @include('components.headers.image-hero') @else @include('components.headers.hero') @endif @include('layouts.navbars.auth.sidenav', ['bg' => 'bg-white']) @endif