Initial Commit

The initial public commit of MVGL website code.
This commit is contained in:
Jimmy B. 2024-01-14 13:51:43 -06:00
commit b39ecf1638
2043 changed files with 215154 additions and 0 deletions

View file

@ -0,0 +1,27 @@
@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