akaunting 3.0 (the last dance)
This commit is contained in:
35
resources/views/components/layouts/auth.blade.php
Normal file
35
resources/views/components/layouts/auth.blade.php
Normal file
@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="{{ language()->direction() }}" lang="{{ app()->getLocale() }}">
|
||||
<x-layouts.auth.head>
|
||||
<x-slot name="title">
|
||||
{!! !empty($title->attributes->has('title')) ? $title->attributes->get('title') : $title !!}
|
||||
</x-slot>
|
||||
</x-layouts.auth.head>
|
||||
|
||||
@mobile
|
||||
<body class="g-sidenav-hidden bg-body overflow-overlay">
|
||||
@elsemobile
|
||||
<body class="g-sidenav-show bg-body overflow-overlay">
|
||||
@endmobile
|
||||
|
||||
@stack('body_start')
|
||||
|
||||
<div id="app" class="bg-no-repeat bg-cover bg-center" style="background-image: url({{ asset('public/img/auth/login-bg.png') }});">
|
||||
<div class="relative w-full lg:max-w-7xl flex items-center m-auto">
|
||||
<x-layouts.auth.slider>
|
||||
{!! $slider ?? '' !!}
|
||||
</x-layouts.auth.slider>
|
||||
|
||||
<x-layouts.auth.content>
|
||||
{!! $content !!}
|
||||
|
||||
<x-layouts.auth.footer />
|
||||
</x-layouts.auth.content>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@stack('body_end')
|
||||
|
||||
<x-layouts.auth.scripts />
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user