2026-05-08 09:37:16 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
2026-05-08 16:07:14 +03:00
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<title>{{ config('app.name', 'Лидерра') }}</title>
|
2026-06-19 15:02:14 +03:00
|
|
|
<meta name="support-email" content="{{ config('services.support.email') }}">
|
2026-05-08 16:07:14 +03:00
|
|
|
@vite(['resources/css/app.css', 'resources/js/app.ts'])
|
2026-06-19 15:02:14 +03:00
|
|
|
@if(config('services.jivosite.widget_id'))
|
|
|
|
|
<script src="https://code.jivo.ru/widget/{{ config('services.jivosite.widget_id') }}" async></script>
|
|
|
|
|
@endif
|
2026-05-08 16:07:14 +03:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="app"></div>
|
|
|
|
|
</body>
|
2026-05-08 09:37:16 +03:00
|
|
|
</html>
|