@extends('app')
@section('auth')
@if ($parentFolder == 'authentication')
@if ($navbar == 'basic')
@include('layouts/navbars/auth/nav-auth-basic')
@else
@if (\Request::is('pages-rtl'))
@include('layouts/navbars/auth/nav-rtl')
@else
@include('layouts/navbars/auth/nav')
@endif
@if($childFolder == 'profile'||$childFolder == 'account'||Request::is('ecommerce-products-new-product'))
@yield('content')
@else
@yield('content')
@include('layouts/footers/auth/footer')
@endif
@endif
@include('components/fixed-plugins')
@endif
@endsection