clara/resources/views/layout/_auth.blade.php

44 lines
1.6 KiB
PHP
Raw Normal View History

2023-04-11 09:21:20 +00:00
@extends('layout.master')
@section('content')
<!--begin::App-->
<div class="d-flex flex-column flex-root app-root" id="kt_app_root">
<!--begin::Wrapper-->
<div class="d-flex flex-column flex-lg-row flex-column-fluid">
<!--begin::Body-->
<div class="d-flex flex-column flex-lg-row-fluid w-lg-50 p-10 order-2 order-lg-1">
<!--begin::Form-->
<div class="d-flex flex-center flex-column flex-lg-row-fluid">
<!--begin::Wrapper-->
<div class="w-lg-500px p-10">
<!--begin::Page-->
{{ $slot }}
<!--end::Page-->
</div>
<!--end::Wrapper-->
</div>
<!--end::Form-->
</div>
<!--end::Body-->
<!--begin::Aside-->
<div class="d-flex flex-lg-row-fluid w-lg-50 bgi-size-cover bgi-position-center order-1 order-lg-2" style="background-image: url({{ image('misc/auth-bg.png') }})">
<!--begin::Content-->
<div class="d-flex flex-column flex-center py-7 py-lg-15 px-5 px-md-15 w-100">
2023-07-21 09:33:53 +00:00
<!--begin::Image-->
<img class="d-none d-lg-block mx-auto w-500px mb-10 mb-lg-20" src="{{ image('misc/bg-login.png') }}" alt=""/>
2023-04-11 09:21:20 +00:00
<!--end::Image-->
</div>
<!--end::Content-->
</div>
<!--end::Aside-->
</div>
<!--end::Wrapper-->
</div>
<!--end::App-->
@endsection