27 lines
1 KiB
PHP
27 lines
1 KiB
PHP
@extends('base.base')
|
|
|
|
@section('content')
|
|
<div class="d-flex flex-column flex-root">
|
|
<!--begin::Authentication-->
|
|
<div
|
|
class="d-flex flex-column flex-column-fluid bgi-position-y-bottom position-x-center bgi-no-repeat bgi-size-contain bgi-attachment-fixed">
|
|
|
|
<!--begin::Content-->
|
|
<div class="d-flex flex-center flex-column flex-column-fluid p-10 pb-lg-20">
|
|
<!--begin::Logo-->
|
|
<a href="{{ $theme->getPageUrl('') }}" class="mb-12">
|
|
<img alt="Logo" src="{{ asset(theme()->getMediaUrlPath() . 'logos/logo_dark@2x.png') }}" class="h-45px"/>
|
|
</a>
|
|
<!--end::Logo-->
|
|
|
|
<!--begin::Wrapper-->
|
|
<div class="{{ $wrapperClass ?? '' }} bg-body rounded shadow-sm p-10 p-lg-15 mx-auto">
|
|
{{ $slot }}
|
|
</div>
|
|
<!--end::Wrapper-->
|
|
</div>
|
|
<!--end::Content-->
|
|
</div>
|
|
<!--end::Authentication-->
|
|
</div>
|
|
@endsection
|