@extends('layouts.app') @section('auth') @if (\Request::is('static-sign-up')) @include('layouts.navbars.guest.nav') @yield('content') @include('layouts.footers.guest.footer') @elseif (\Request::is('static-sign-in')) @include('layouts.navbars.guest.nav') @yield('content') @include('layouts.footers.guest.footer') @else @if (\Request::is('rtl')) @include('layouts.navbars.auth.sidebar-rtl')
@include('layouts.navbars.auth.nav-rtl')
@yield('content') @include('layouts.footers.auth.footer')
@stack('scripts') @elseif (\Request::is('profile')) @include('layouts.navbars.auth.sidebar')
@include('layouts.navbars.auth.nav') @yield('content')
@elseif (\Request::is('virtual-reality')) @include('layouts.navbars.auth.nav')
@include('layouts.navbars.auth.sidebar')
@yield('content')
@include('layouts.footers.auth.footer') @stack('scripts') @else @include('layouts.navbars.auth.sidebar')
@include('layouts.navbars.auth.nav')
@yield('content') @include('layouts.footers.auth.footer')
@stack('scripts') @endif @endif @endsection