file-management-system/resources/views/layout/_auth.blade.php
2023-11-03 16:12:15 +07:00

79 lines
3.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@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-primary fs-base">
<a href="#" class="px-5" target="_blank">Terms</a>
<a href="#" class="px-5" target="_blank">Plans</a>
<a href="#" class="px-5" target="_blank">Contact Us</a>
</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::Logo-->
<a href="{{ route('dashboard') }}" class="mb-12">
<img alt="Logo" src="{{ image('logos/custom-1.png') }}" class="h-60px h-lg-75px"/>
</a>
<!--end::Logo-->
<!--begin::Image-->
<img class="d-none d-lg-block mx-auto w-275px w-md-50 w-xl-500px mb-10 mb-lg-20" src="{{ image('misc/auth-screens.png') }}" alt=""/>
<!--end::Image-->
<!--begin::Title-->
<h1 class="d-none d-lg-block text-white fs-2qx fw-bolder text-center mb-7">
Fast, Efficient and Productive
</h1>
<!--end::Title-->
<!--begin::Text-->
<div class="d-none d-lg-block text-white fs-base text-center">
In this kind of post, <a href="#" class="opacity-75-hover text-warning fw-bold me-1">the blogger</a>
introduces a person theyve interviewed <br/> and provides some background information about
<a href="#" class="opacity-75-hover text-warning fw-bold me-1">the interviewee</a>
and their <br/> work following this is a transcript of the interview.
</div>
<!--end::Text-->
</div>
<!--end::Content-->
</div>
<!--end::Aside-->
</div>
<!--end::Wrapper-->
</div>
<!--end::App-->
@endsection