guest.blade.php 779 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <meta name="csrf-token" content="{{ csrf_token() }}">
  7. <title>{{ config('app.name', 'Laravel') }}</title>
  8. <!-- Fonts -->
  9. <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap">
  10. <!-- Styles -->
  11. <link rel="stylesheet" href="{{ asset('css/app.css') }}">
  12. <!-- Scripts -->
  13. <script src="{{ asset('js/app.js') }}" defer></script>
  14. </head>
  15. <body>
  16. <div class="font-sans text-crayola antialiased">
  17. {{ $slot }}
  18. </div>
  19. </body>
  20. </html>