auth.blade.php 991 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <!-- CSRF Token -->
  8. <meta name="csrf-token" content="{{ csrf_token() }}">
  9. <title>{{ config('app.name', 'Vien Blog') }} Admin</title>
  10. <!-- Scripts -->
  11. {{--<script src="{{ asset('js/app.js') }}" defer></script>--}}
  12. <!-- Fonts -->
  13. {{--<link rel="dns-prefetch" href="https://fonts.gstatic.com">--}}
  14. {{--<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,600" rel="stylesheet" type="text/css">--}}
  15. <!-- Styles -->
  16. <link href="{{ asset('css/default.css') }}" rel="stylesheet">
  17. <link href="{{ asset('css/admin.css') }}" rel="stylesheet">
  18. </head>
  19. <body>
  20. <div id="app">
  21. @include('admin.layouts.header')
  22. <main class="py-4">
  23. @yield('content')
  24. </main>
  25. </div>
  26. </body>
  27. </html>