65 lines
2.2 KiB
PHP
65 lines
2.2 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>{{$title}}</title>
|
|
|
|
<!-- Fonts -->
|
|
<link rel="dns-prefetch" href="fonts.bunny.net">
|
|
<link href="https://fonts.bunny.net/css?family=Nunito" rel="stylesheet">
|
|
|
|
<!-- Scripts -->
|
|
|
|
<link href="assets/css/app.min.css" rel="stylesheet" type="text/css" id="app-style" />
|
|
<link href="assets/css/icons.min.css" rel="stylesheet" type="text/css" />
|
|
<script src="assets/js/config.js"></script>
|
|
<link rel="shortcut icon" href="logo-sm.png">
|
|
|
|
@yield('css')
|
|
|
|
</head>
|
|
<body class="authentication-bg pb-0">
|
|
|
|
@if(session()->has('flash_success'))
|
|
<div class="container">
|
|
<div class="alert alert-success alert-dismissible fade show" role="alert">
|
|
<strong>Sucesso!</strong> {{ session()->get('flash_success') }}
|
|
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
@if(session()->has('flash_error'))
|
|
<div class="container">
|
|
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
|
<strong>Sucesso!</strong> {{ session()->get('flash_error') }}
|
|
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
@yield('content')
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
|
|
|
|
<script src="assets/js/vendor.min.js"></script>
|
|
|
|
<!-- App js -->
|
|
<script src="assets/js/app.min.js"></script>
|
|
|
|
<script src='https://cdnjs.cloudflare.com/ajax/libs/sweetalert/2.1.2/sweetalert.min.js'></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.15/jquery.mask.min.js"></script>
|
|
<!-- <script type="text/javascript" src="js/main.js"></script> -->
|
|
|
|
@yield('js')
|
|
|
|
</body>
|
|
</html>
|