26 lines
687 B
PHP
26 lines
687 B
PHP
<!DOCTYPE html>
|
|
<html lang="en" data-bs-theme="auto">
|
|
<head>
|
|
<!-- Scripts -->
|
|
@vite(['resources/sass/app.scss', 'resources/js/app.js'])
|
|
@include('layouts.head')
|
|
</head>
|
|
|
|
<body class="bg-body-tertiary">
|
|
<!-- Include the symbols for svg drawing -->
|
|
@include('layouts.svg')
|
|
<!-- End svg drawing symbols -->
|
|
|
|
<!-- Content of the main body -->
|
|
<main class="col-sm-10 bg-body-tertiary" id="main">
|
|
<div class="container-fluid">
|
|
@yield('content')
|
|
<!-- Footer for end section -->
|
|
@include('layouts.buyback.footer')
|
|
<!-- End Footer -->
|
|
</div>
|
|
</main>
|
|
<!-- End Content of the main body -->
|
|
|
|
</body>
|
|
</html> |