- fix users cannot reset password due session expiration - add a new mail when users contacts via Contact form - add list page for all deals in broker dashboard - fixed links in home page
44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
|
|
@props(['title' => ''])
|
|
@php
|
|
$pageTitle = config('app.name', 'Laravel');
|
|
if ($title !== ''){
|
|
$pageTitle = "$pageTitle | $title";
|
|
}
|
|
@endphp
|
|
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="h-full">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
<title>{{ $pageTitle }}</title>
|
|
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link rel="shortcut icon" href="/favicon.ico" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
<link rel="manifest" href="/site.webmanifest" />
|
|
|
|
<!-- Fonts -->
|
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
|
<link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet"/>
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css">
|
|
|
|
<!-- Styles / Scripts -->
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
|
|
</head>
|
|
<body class="bg-[#FFFFFF] text-[#1b1b18] flex h-full w-full flex-col preload">
|
|
<x-ui.preloader/>
|
|
<div class="h-full w-full" style="display: none" id="content">
|
|
@if(session()->has('impersonate_name'))
|
|
<x-impersonate-alert />
|
|
@endif
|
|
{{$slot}}
|
|
</div>
|
|
</body>
|
|
@stack('scripts')
|
|
</html>
|