47 lines
1.7 KiB
PHP
47 lines
1.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>Laravel</title>
|
|
|
|
<!-- Fonts -->
|
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
|
<link href="https://fonts.bunny.net/css?family=figtree:400,600&display=swap" rel="stylesheet" />
|
|
|
|
<!-- Bootstrap -->
|
|
<!--<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
|
|
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous">
|
|
</script>-->
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
@vite(['resources/sass/app.scss', 'resources/js/app.js', 'resources/css/app.css'])
|
|
<style>
|
|
html,
|
|
body {
|
|
height: 100% !important
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body class="d-flex align-items-center py-4 bg-body-tertiary">
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8 text-center">
|
|
<img src={{ url('/images/logo.png') }} alt="Alfa logo" width="70">
|
|
</div>
|
|
</div>
|
|
@if ($errors->any())
|
|
{!! implode('', $errors->all('<div>:message</div>')) !!}
|
|
@endif
|
|
@yield('content')
|
|
</body>
|
|
|
|
</html>
|