37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
 | |
| <head>
 | |
|     <meta charset="utf-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
| 
 | |
|     <!-- CSRF Token -->
 | |
|     <meta name="csrf-token" content="{{ csrf_token() }}">
 | |
| 
 | |
|     <title>{{ config('app.name', 'Laravel') }}</title>
 | |
| 
 | |
|     <!-- Scripts -->
 | |
|     <script
 | |
|             src="https://code.jquery.com/jquery-3.3.1.min.js"
 | |
|             integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
 | |
|             crossorigin="anonymous"></script>
 | |
|     <link rel="stylesheet" href="https://unpkg.com/jcrop/dist/jcrop.css">
 | |
|     <script src="https://unpkg.com/jcrop"></script>
 | |
|     {{--<script src="{{ asset('js/app.js') }}" defer></script>--}}
 | |
| 
 | |
| 
 | |
|     <!-- Fonts -->
 | |
|     <link rel="dns-prefetch" href="//fonts.gstatic.com">
 | |
|     <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet" type="text/css">
 | |
| 
 | |
|     <!-- Styles -->
 | |
|     {{--<link href="{{ asset('css/app.css') }}" rel="stylesheet">--}}
 | |
| </head>
 | |
| <body>
 | |
|     <div id="app">
 | |
|         <main class="py-4">
 | |
|             @yield('content')
 | |
|         </main>
 | |
|     </div>
 | |
| </body>
 | |
| </html>
 |