23 lines
685 B
PHP
23 lines
685 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
{{-- Base Meta Tags --}}
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
{{-- Custom Meta Tags --}}
|
|
@yield('meta_tags')
|
|
{{-- Title --}}
|
|
<title>Dashboard LTE</title>
|
|
{{-- IFrame Preloader Removal Workaround --}}
|
|
<!-- IFrame Preloader Removal Workaround -->
|
|
<style type="text/css">
|
|
body.iframe-mode .preloader {
|
|
display: none !important;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
</html> |