File: /home/imensosw/.trash/resources.2/views/layouts/app.blade.php
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--favicon-->
<link rel="icon" href="{{ asset('images/favicon.ico')}}" type="image/ico" />
<!-- loader-->
<link href="{{ asset('assets/css/pace.min.css')}}" rel="stylesheet" />
<script src="{{ asset('assets/js/pace.min.js')}}"></script>
<!-- Bootstrap CSS -->
<link href="{{ asset('assets/css/bootstrap.min.css')}}" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<link href="{{ asset('assets/css/app.css')}}" rel="stylesheet">
<link href="{{ asset('assets/css/icons.css')}}" rel="stylesheet">
@yield('pageTitle')
@yield("style")
@yield("styles")
</head>
<body class="bg-login">
<!--wrapper-->
<div class="wrapper">
@yield("wrapper")
@yield("content")
</div>
<!--end wrapper-->
<form id="logoutform" action="{{ route('logout') }}" method="POST" style="display: none;">
{{ csrf_field() }}
</form>
<!--plugins-->
<script src="{{ asset('assets/js/jquery.min.js')}}"></script>
<script src="{{ asset('assets/plugins/select2/js/select2.min.js')}}"></script>
<script>
$('.single-select').select2({
theme: 'bootstrap4',
width: $(this).data('width') ? $(this).data('width') : $(this).hasClass('w-100') ? '100%' : 'style',
placeholder: $(this).data('placeholder'),
allowClear: Boolean($(this).data('allow-clear')),
});
$('.multiple-select').select2({
theme: 'bootstrap4',
width: $(this).data('width') ? $(this).data('width') : $(this).hasClass('w-100') ? '100%' : 'style',
placeholder: $(this).data('placeholder'),
allowClear: Boolean($(this).data('allow-clear')),
});
</script>
@yield("script")
@yield("scripts")
</body>
</html>