clara/resources/views/layout/_auth.blade.php
2023-12-20 17:35:55 +07:00

54 lines
2.0 KiB
PHP

@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-->
<!--begin::Footer-->
<div class="d-flex flex-center flex-wrap px-5">
<!--begin::Links-->
<div class="d-flex fw-semibold text-default fs-base">
PT Indo Artha Teknologi © {{ date('Y') }} - Daeng Deni Mardaeni
</div>
<!--end::Links-->
</div>
<!--end::Footer-->
</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">
<!--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=""/>
<!--end::Image-->
</div>
<!--end::Content-->
</div>
<!--end::Aside-->
</div>
<!--end::Wrapper-->
</div>
<!--end::App-->
@endsection