2023-11-17 01:44:01 -05:00
|
|
|
<!DOCTYPE html>
|
2025-01-06 12:20:11 -05:00
|
|
|
<html lang="en">
|
2023-11-17 01:44:01 -05:00
|
|
|
|
|
|
|
<head>
|
2025-01-06 12:20:11 -05:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>{{ $title }}</title>
|
|
|
|
<script>
|
|
|
|
window.settings = {
|
2025-01-06 13:33:55 -05:00
|
|
|
base_url: "/",
|
2025-01-06 12:20:11 -05:00
|
|
|
title: "{{ $title }}",
|
|
|
|
version: "{{ $version }}",
|
|
|
|
logo: "{{ $logo }}",
|
|
|
|
secure_path: "{{ $secure_path }}",
|
|
|
|
};
|
|
|
|
</script>
|
2025-01-13 08:31:31 -05:00
|
|
|
<script type="module" crossorigin src="/assets/admin/assets/index.js?v={{ $version }}"></script>
|
|
|
|
<link rel="stylesheet" crossorigin href="/assets/admin/assets/index.css?v={{ $version }}" />
|
|
|
|
<link rel="stylesheet" crossorigin href="/assets/admin/assets/vendor.css?v={{ $version }}">
|
2023-11-17 01:44:01 -05:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2025-01-06 12:20:11 -05:00
|
|
|
<div id="root"></div>
|
2023-11-17 01:44:01 -05:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|