<!DOCTYPE html> 
<html dir="ltr" lang="en"> 
 
<head> 
    <meta charset="utf-8"> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
    <!-- Tell the browser to be responsive to screen width --> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    @include('backend.layouts.partials.meta_tags') 
    <title>@yield('title', config('app.name'))</title> 
    @include('backend.layouts.partials.styles') 
    @yield('styles') 
</head> 
 
<body> 
    <!-- ============================================================== --> 
    <!-- Preloader - style you can find in spinners.css --> 
    <!-- ============================================================== --> 
    @include('backend.layouts.partials.preloader') 
     
    <!-- ============================================================== --> 
    <!-- Main wrapper - style you can find in pages.scss --> 
    <!-- ============================================================== --> 
    <div id="main-wrapper"> 
        @yield('error-content') 
        @include('backend.layouts.partials.footer') 
    </div> 
    <!-- ============================================================== --> 
    <!-- End Wrapper --> 
    <!-- ============================================================== --> 
     
    @include('backend.layouts.partials.theme-options') 
    <div class="chat-windows"></div> 
    @include('backend.layouts.partials.scripts') 
    @yield('scripts') 
</body> 
</html>
 
 |