diff --git a/resources/views/vendor/adminlte/auth/auth-page.blade.php b/resources/views/vendor/adminlte/auth/auth-page.blade.php
new file mode 100644
index 0000000..1faa152
--- /dev/null
+++ b/resources/views/vendor/adminlte/auth/auth-page.blade.php
@@ -0,0 +1,81 @@
+@extends('adminlte::master')
+
+@php( $dashboard_url = View::getSection('dashboard_url') ?? config('adminlte.dashboard_url', 'home') )
+
+@if (config('adminlte.use_route_url', false))
+ @php( $dashboard_url = $dashboard_url ? route($dashboard_url) : '' )
+@else
+ @php( $dashboard_url = $dashboard_url ? url($dashboard_url) : '' )
+@endif
+
+@section('adminlte_css')
+ @stack('css')
+ @yield('css')
+@stop
+
+@section('classes_body'){{ ($auth_type ?? 'login') . '-page' }}@stop
+
+@section('body')
+
+
+ {{-- Logo --}}
+
+
+ {{-- Card Box --}}
+
+
+ {{-- Card Header --}}
+ @hasSection('auth_header')
+
+ @endif
+
+ {{-- Card Body --}}
+
+ @yield('auth_body')
+
+
+ {{-- Card Footer --}}
+ @hasSection('auth_footer')
+
+ @endif
+
+
+
+
+@stop
+
+@section('adminlte_js')
+ @stack('js')
+ @yield('js')
+@stop
diff --git a/resources/views/vendor/adminlte/auth/login.blade.php b/resources/views/vendor/adminlte/auth/login.blade.php
new file mode 100644
index 0000000..c5e1694
--- /dev/null
+++ b/resources/views/vendor/adminlte/auth/login.blade.php
@@ -0,0 +1,104 @@
+@extends('adminlte::auth.auth-page', ['auth_type' => 'login'])
+
+@section('adminlte_css_pre')
+
+@stop
+
+@php( $login_url = View::getSection('login_url') ?? config('adminlte.login_url', 'login') )
+@php( $register_url = View::getSection('register_url') ?? config('adminlte.register_url', 'register') )
+@php( $password_reset_url = View::getSection('password_reset_url') ?? config('adminlte.password_reset_url', 'password/reset') )
+
+@if (config('adminlte.use_route_url', false))
+ @php( $login_url = $login_url ? route($login_url) : '' )
+ @php( $register_url = $register_url ? route($register_url) : '' )
+ @php( $password_reset_url = $password_reset_url ? route($password_reset_url) : '' )
+@else
+ @php( $login_url = $login_url ? url($login_url) : '' )
+ @php( $register_url = $register_url ? url($register_url) : '' )
+ @php( $password_reset_url = $password_reset_url ? url($password_reset_url) : '' )
+@endif
+
+@section('auth_header', __('adminlte::adminlte.login_message'))
+
+@section('auth_body')
+
+@stop
+
+@section('auth_footer')
+ {{-- Password reset link --}}
+ @if($password_reset_url)
+
+
+ {{ __('adminlte::adminlte.i_forgot_my_password') }}
+
+
+ @endif
+
+ {{-- Register link --}}
+ @if($register_url)
+
+
+ {{ __('adminlte::adminlte.register_a_new_membership') }}
+
+
+ @endif
+@stop
diff --git a/resources/views/vendor/adminlte/auth/passwords/confirm.blade.php b/resources/views/vendor/adminlte/auth/passwords/confirm.blade.php
new file mode 100644
index 0000000..cae5059
--- /dev/null
+++ b/resources/views/vendor/adminlte/auth/passwords/confirm.blade.php
@@ -0,0 +1,88 @@
+@extends('adminlte::master')
+
+@section('adminlte_css')
+ @yield('css')
+@stop
+
+@section('classes_body', 'lockscreen')
+
+@php( $password_reset_url = View::getSection('password_reset_url') ?? config('adminlte.password_reset_url', 'password/reset') )
+@php( $dashboard_url = View::getSection('dashboard_url') ?? config('adminlte.dashboard_url', 'home') )
+
+@if (config('adminlte.use_route_url', false))
+ @php( $password_reset_url = $password_reset_url ? route($password_reset_url) : '' )
+ @php( $dashboard_url = $dashboard_url ? route($dashboard_url) : '' )
+@else
+ @php( $password_reset_url = $password_reset_url ? url($password_reset_url) : '' )
+ @php( $dashboard_url = $dashboard_url ? url($dashboard_url) : '' )
+@endif
+
+@section('body')
+
+
+ {{-- Lockscreen logo --}}
+
+
+ {{-- Lockscreen user name --}}
+
+ {{ isset(Auth::user()->name) ? Auth::user()->name : Auth::user()->email }}
+
+
+ {{-- Lockscreen item --}}
+
+ @if(config('adminlte.usermenu_image'))
+
+
+
+ @endif
+
+
+
+
+ {{-- Password error alert --}}
+ @error('password')
+
+ {{ $message }}
+
+ @enderror
+
+ {{-- Help block --}}
+
+ {{ __('adminlte::adminlte.confirm_password_message') }}
+
+
+ {{-- Additional links --}}
+
+
+
+@stop
+
+@section('adminlte_js')
+ @stack('js')
+ @yield('js')
+@stop
diff --git a/resources/views/vendor/adminlte/auth/passwords/email.blade.php b/resources/views/vendor/adminlte/auth/passwords/email.blade.php
new file mode 100644
index 0000000..c1268b7
--- /dev/null
+++ b/resources/views/vendor/adminlte/auth/passwords/email.blade.php
@@ -0,0 +1,50 @@
+@extends('adminlte::auth.auth-page', ['auth_type' => 'login'])
+
+@php( $password_email_url = View::getSection('password_email_url') ?? config('adminlte.password_email_url', 'password/email') )
+
+@if (config('adminlte.use_route_url', false))
+ @php( $password_email_url = $password_email_url ? route($password_email_url) : '' )
+@else
+ @php( $password_email_url = $password_email_url ? url($password_email_url) : '' )
+@endif
+
+@section('auth_header', __('adminlte::adminlte.password_reset_message'))
+
+@section('auth_body')
+
+ @if(session('status'))
+
+ {{ session('status') }}
+
+ @endif
+
+
+
+@stop
diff --git a/resources/views/vendor/adminlte/auth/passwords/reset.blade.php b/resources/views/vendor/adminlte/auth/passwords/reset.blade.php
new file mode 100644
index 0000000..f51e454
--- /dev/null
+++ b/resources/views/vendor/adminlte/auth/passwords/reset.blade.php
@@ -0,0 +1,82 @@
+@extends('adminlte::auth.auth-page', ['auth_type' => 'login'])
+
+@php( $password_reset_url = View::getSection('password_reset_url') ?? config('adminlte.password_reset_url', 'password/reset') )
+
+@if (config('adminlte.use_route_url', false))
+ @php( $password_reset_url = $password_reset_url ? route($password_reset_url) : '' )
+@else
+ @php( $password_reset_url = $password_reset_url ? url($password_reset_url) : '' )
+@endif
+
+@section('auth_header', __('adminlte::adminlte.password_reset_message'))
+
+@section('auth_body')
+
+@stop
diff --git a/resources/views/vendor/adminlte/auth/register.blade.php b/resources/views/vendor/adminlte/auth/register.blade.php
new file mode 100644
index 0000000..ae252aa
--- /dev/null
+++ b/resources/views/vendor/adminlte/auth/register.blade.php
@@ -0,0 +1,108 @@
+@extends('adminlte::auth.auth-page', ['auth_type' => 'register'])
+
+@php( $login_url = View::getSection('login_url') ?? config('adminlte.login_url', 'login') )
+@php( $register_url = View::getSection('register_url') ?? config('adminlte.register_url', 'register') )
+
+@if (config('adminlte.use_route_url', false))
+ @php( $login_url = $login_url ? route($login_url) : '' )
+ @php( $register_url = $register_url ? route($register_url) : '' )
+@else
+ @php( $login_url = $login_url ? url($login_url) : '' )
+ @php( $register_url = $register_url ? url($register_url) : '' )
+@endif
+
+@section('auth_header', __('adminlte::adminlte.register_message'))
+
+@section('auth_body')
+
+@stop
+
+@section('auth_footer')
+
+
+ {{ __('adminlte::adminlte.i_already_have_a_membership') }}
+
+
+@stop
diff --git a/resources/views/vendor/adminlte/auth/verify.blade.php b/resources/views/vendor/adminlte/auth/verify.blade.php
new file mode 100644
index 0000000..b2db1d3
--- /dev/null
+++ b/resources/views/vendor/adminlte/auth/verify.blade.php
@@ -0,0 +1,23 @@
+@extends('adminlte::auth.auth-page', ['auth_type' => 'login'])
+
+@section('auth_header', __('adminlte::adminlte.verify_message'))
+
+@section('auth_body')
+
+ @if(session('resent'))
+
+ {{ __('adminlte::adminlte.verify_email_sent') }}
+
+ @endif
+
+ {{ __('adminlte::adminlte.verify_check_your_email') }}
+ {{ __('adminlte::adminlte.verify_if_not_recieved') }},
+
+
+
+@stop
diff --git a/resources/views/vendor/adminlte/components/form/button.blade.php b/resources/views/vendor/adminlte/components/form/button.blade.php
new file mode 100644
index 0000000..667b017
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/button.blade.php
@@ -0,0 +1,4 @@
+merge(['class' => "btn btn-{$theme}"]) }}>
+ @isset($icon) @endisset
+ @isset($label) {{ $label }} @endisset
+
diff --git a/resources/views/vendor/adminlte/components/form/date-range.blade.php b/resources/views/vendor/adminlte/components/form/date-range.blade.php
new file mode 100644
index 0000000..bcc1dbb
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/date-range.blade.php
@@ -0,0 +1,165 @@
+@extends('adminlte::components.form.input-group-component')
+
+{{-- Set errors bag internallly --}}
+
+@php($setErrorsBag($errors ?? null))
+
+{{-- Set input group item section --}}
+
+@section('input_group_item')
+
+ {{-- Date Range Input --}}
+ merge(['class' => $makeItemClass()]) }}>
+
+@overwrite
+
+{{-- Add plugin initialization and configuration code --}}
+
+@push('js')
+
+@endpush
+
+{{-- Register Javascript utility class for this component --}}
+
+@once
+@push('js')
+
+@endpush
+@endonce
diff --git a/resources/views/vendor/adminlte/components/form/input-color.blade.php b/resources/views/vendor/adminlte/components/form/input-color.blade.php
new file mode 100644
index 0000000..ee13ca4
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/input-color.blade.php
@@ -0,0 +1,54 @@
+@extends('adminlte::components.form.input-group-component')
+
+{{-- Set errors bag internallly --}}
+
+@php($setErrorsBag($errors ?? null))
+
+{{-- Set input group item section --}}
+
+@section('input_group_item')
+
+ {{-- Input Color --}}
+ merge(['class' => $makeItemClass()]) }}>
+
+@overwrite
+
+{{-- Add plugin initialization and configuration code --}}
+
+@push('js')
+
+@endpush
diff --git a/resources/views/vendor/adminlte/components/form/input-date.blade.php b/resources/views/vendor/adminlte/components/form/input-date.blade.php
new file mode 100644
index 0000000..0677b62
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/input-date.blade.php
@@ -0,0 +1,67 @@
+@extends('adminlte::components.form.input-group-component')
+
+{{-- Set errors bag internallly --}}
+
+@php($setErrorsBag($errors ?? null))
+
+{{-- Set input group item section --}}
+
+@section('input_group_item')
+
+ {{-- Input Date --}}
+ merge(['class' => $makeItemClass()]) }}>
+
+@overwrite
+
+{{-- Add plugin initialization and configuration code --}}
+
+@push('js')
+
+@endpush
+
+{{-- Register Javascript utility class for this component --}}
+
+@once
+@push('js')
+
+@endpush
+@endonce
diff --git a/resources/views/vendor/adminlte/components/form/input-file.blade.php b/resources/views/vendor/adminlte/components/form/input-file.blade.php
new file mode 100644
index 0000000..054493e
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/input-file.blade.php
@@ -0,0 +1,78 @@
+@extends('adminlte::components.form.input-group-component')
+
+{{-- Set errors bag internallly --}}
+
+@php($setErrorsBag($errors ?? null))
+
+{{-- Set input group item section --}}
+
+@section('input_group_item')
+
+
+
+ {{-- Custom file input --}}
+ merge(['class' => $makeItemClass()]) }}>
+
+ {{-- Custom file label --}}
+
+ {{ $placeholder }}
+
+
+
+
+@overwrite
+
+{{-- Add the plugin initialization code --}}
+
+@once
+@push('js')
+
+@endpush
+@endonce
+
+{{-- Setup the height and font size of the plugin when using sm/lg sizes --}}
+{{-- NOTE: this may change with newer plugin or Bootstrap versions --}}
+
+@once
+@push('css')
+
+@endpush
+@endonce
diff --git a/resources/views/vendor/adminlte/components/form/input-group-component.blade.php b/resources/views/vendor/adminlte/components/form/input-group-component.blade.php
new file mode 100644
index 0000000..0a1e0f4
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/input-group-component.blade.php
@@ -0,0 +1,65 @@
+{{-- Setup the input group component structure --}}
+
+
+
+{{-- Extra style customization for invalid input groups --}}
+
+@once
+@push('css')
+
+@endpush
+@endonce
diff --git a/resources/views/vendor/adminlte/components/form/input-slider.blade.php b/resources/views/vendor/adminlte/components/form/input-slider.blade.php
new file mode 100644
index 0000000..12769da
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/input-slider.blade.php
@@ -0,0 +1,136 @@
+@extends('adminlte::components.form.input-group-component')
+
+{{-- Set errors bag internallly --}}
+
+@php($setErrorsBag($errors ?? null))
+
+{{-- Set input group item section --}}
+
+@section('input_group_item')
+
+ {{-- Input Slider --}}
+ merge(['class' => $makeItemClass()]) }}>
+
+@overwrite
+
+{{-- Add plugin initialization and configuration code --}}
+
+@push('js')
+
+@endpush
+
+{{-- Add CSS workarounds for the plugin --}}
+{{-- NOTE: this may change with newer plugin versions --}}
+
+@push('css')
+
+@endpush
+
+{{-- Setup custom invalid style --}}
+{{-- NOTE: this may change with newer plugin versions --}}
+
+@once
+@push('css')
+
+@endpush
+@endonce
diff --git a/resources/views/vendor/adminlte/components/form/input-switch.blade.php b/resources/views/vendor/adminlte/components/form/input-switch.blade.php
new file mode 100644
index 0000000..974647d
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/input-switch.blade.php
@@ -0,0 +1,74 @@
+@extends('adminlte::components.form.input-group-component')
+
+{{-- Set errors bag internallly --}}
+
+@php($setErrorsBag($errors ?? null))
+
+{{-- Set input group item section --}}
+
+@section('input_group_item')
+
+ {{-- Input Switch --}}
+ merge(['class' => $makeItemClass()]) }}>
+
+@overwrite
+
+{{-- Add plugin initialization and configuration code --}}
+
+@push('js')
+
+@endpush
+
+{{-- Setup the height/font of the plugin when using sm/lg sizes --}}
+{{-- NOTE: this may change with newer plugin versions --}}
+
+@once
+@push('css')
+
+@endpush
+@endonce
diff --git a/resources/views/vendor/adminlte/components/form/input.blade.php b/resources/views/vendor/adminlte/components/form/input.blade.php
new file mode 100644
index 0000000..e8ccddf
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/input.blade.php
@@ -0,0 +1,16 @@
+@extends('adminlte::components.form.input-group-component')
+
+{{-- Set errors bag internallly --}}
+
+@php($setErrorsBag($errors ?? null))
+
+{{-- Set input group item section --}}
+
+@section('input_group_item')
+
+ {{-- Input --}}
+ merge(['class' => $makeItemClass()]) }}>
+
+@overwrite
diff --git a/resources/views/vendor/adminlte/components/form/options.blade.php b/resources/views/vendor/adminlte/components/form/options.blade.php
new file mode 100644
index 0000000..3c63fdc
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/options.blade.php
@@ -0,0 +1,26 @@
+{{-- Empty option --}}
+@if(isset($emptyOption))
+
+
+ {{ is_string($emptyOption) ? $emptyOption : '' }}
+
+
+{{-- Placeholder option --}}
+@elseif(isset($placeholder))
+
+
+ {{ is_string($placeholder) ? $placeholder : '' }}
+
+
+@endif
+
+{{-- Other options --}}
+@foreach($options as $key => $value)
+
+
+ {{ $value }}
+
+
+@endforeach
diff --git a/resources/views/vendor/adminlte/components/form/select-bs.blade.php b/resources/views/vendor/adminlte/components/form/select-bs.blade.php
new file mode 100644
index 0000000..dcef8a8
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/select-bs.blade.php
@@ -0,0 +1,53 @@
+@extends('adminlte::components.form.input-group-component')
+
+{{-- Set errors bag internallly --}}
+
+@php($setErrorsBag($errors ?? null))
+
+{{-- Set input group item section --}}
+
+@section('input_group_item')
+
+ {{-- Select --}}
+ merge(['class' => $makeItemClass()]) }}>
+ {{ $slot }}
+
+
+@overwrite
+
+{{-- Add plugin initialization and configuration code --}}
+
+@push('js')
+
+@endpush
+
+{{-- Set of CSS workarounds for the plugin --}}
+{{-- NOTE: this may change with newer plugin versions --}}
+
+@once
+@push('css')
+
+@endpush
+@endonce
diff --git a/resources/views/vendor/adminlte/components/form/select.blade.php b/resources/views/vendor/adminlte/components/form/select.blade.php
new file mode 100644
index 0000000..b643e2a
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/select.blade.php
@@ -0,0 +1,38 @@
+@extends('adminlte::components.form.input-group-component')
+
+{{-- Set errors bag internallly --}}
+
+@php($setErrorsBag($errors ?? null))
+
+{{-- Set input group item section --}}
+
+@section('input_group_item')
+
+ {{-- Select --}}
+ merge(['class' => $makeItemClass()]) }}>
+ {{ $slot }}
+
+
+@overwrite
+
+{{-- Support to auto select the old submitted values --}}
+
+@if($errors->any() && $enableOldSupport)
+@push('js')
+
+@endpush
+@endif
diff --git a/resources/views/vendor/adminlte/components/form/select2.blade.php b/resources/views/vendor/adminlte/components/form/select2.blade.php
new file mode 100644
index 0000000..05f9043
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/select2.blade.php
@@ -0,0 +1,106 @@
+@extends('adminlte::components.form.input-group-component')
+
+{{-- Set errors bag internallly --}}
+
+@php($setErrorsBag($errors ?? null))
+
+{{-- Set input group item section --}}
+
+@section('input_group_item')
+
+ {{-- Select --}}
+ merge(['class' => $makeItemClass()]) }}>
+ {{ $slot }}
+
+
+@overwrite
+
+{{-- Add plugin initialization and configuration code --}}
+
+@push('js')
+
+@endpush
+
+{{-- CSS workarounds for the Select2 plugin --}}
+{{-- NOTE: this may change with newer plugin versions --}}
+
+@once
+@push('css')
+
+@endpush
+@endonce
diff --git a/resources/views/vendor/adminlte/components/form/text-editor.blade.php b/resources/views/vendor/adminlte/components/form/text-editor.blade.php
new file mode 100644
index 0000000..e2354f2
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/text-editor.blade.php
@@ -0,0 +1,74 @@
+@extends('adminlte::components.form.input-group-component')
+
+{{-- Set errors bag internallly --}}
+
+@php($setErrorsBag($errors ?? null))
+
+{{-- Set input group item section --}}
+
+@section('input_group_item')
+
+ {{-- Summernote Textarea --}}
+
+
+@overwrite
+
+{{-- Add plugin initialization and configuration code --}}
+
+@push('js')
+
+@endpush
+
+{{-- Setup the font size of the plugin when using sm/lg sizes --}}
+{{-- NOTE: this may change with newer plugin versions --}}
+
+@once
+@push('css')
+
+@endpush
+@endonce
diff --git a/resources/views/vendor/adminlte/components/form/textarea.blade.php b/resources/views/vendor/adminlte/components/form/textarea.blade.php
new file mode 100644
index 0000000..b5f5dff
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/form/textarea.blade.php
@@ -0,0 +1,16 @@
+@extends('adminlte::components.form.input-group-component')
+
+{{-- Set errors bag internallly --}}
+
+@php($setErrorsBag($errors ?? null))
+
+{{-- Set input group item section --}}
+
+@section('input_group_item')
+
+ {{-- Textarea --}}
+
+
+@overwrite
diff --git a/resources/views/vendor/adminlte/components/layout/navbar-darkmode-widget.blade.php b/resources/views/vendor/adminlte/components/layout/navbar-darkmode-widget.blade.php
new file mode 100644
index 0000000..f39a386
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/layout/navbar-darkmode-widget.blade.php
@@ -0,0 +1,65 @@
+{{-- Navbar darkmode widget --}}
+
+
+
+
+
+
+
+
+
+{{-- Add Javascript listener for the click event --}}
+
+@once
+@push('js')
+
+@endpush
+@endonce
diff --git a/resources/views/vendor/adminlte/components/layout/navbar-notification.blade.php b/resources/views/vendor/adminlte/components/layout/navbar-notification.blade.php
new file mode 100644
index 0000000..78d03a8
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/layout/navbar-notification.blade.php
@@ -0,0 +1,154 @@
+{{-- Navbar notification --}}
+
+
+
+ {{-- Link --}}
+ merge($makeAnchorDefaultAttrs()) }}>
+
+ {{-- Icon --}}
+
+
+ {{-- Badge --}}
+ {{ $badgeLabel }}
+
+
+
+ {{-- Dropdown Menu --}}
+ @if($enableDropdownMode)
+
+
+
+ @endif
+
+
+
+{{-- If required, update the notification periodically --}}
+
+@if (! is_null($makeUpdateUrl()) && $makeUpdatePeriod() > 0)
+@push('js')
+
+@endpush
+@endif
+
+{{-- Register Javascript utility class for this component --}}
+
+@once
+@push('js')
+
+@endpush
+@endonce
diff --git a/resources/views/vendor/adminlte/components/tool/datatable.blade.php b/resources/views/vendor/adminlte/components/tool/datatable.blade.php
new file mode 100644
index 0000000..4df6ac9
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/tool/datatable.blade.php
@@ -0,0 +1,61 @@
+{{-- Table --}}
+
+
+
+
merge(['class' => $makeTableClass()]) }}>
+
+ {{-- Table head --}}
+
+
+ @foreach($heads as $th)
+
+ {{ is_array($th) ? ($th['label'] ?? '') : $th }}
+
+ @endforeach
+
+
+
+ {{-- Table body --}}
+ {{ $slot }}
+
+ {{-- Table footer --}}
+ @isset($withFooter)
+
+ @endisset
+
+
+
+
+
+{{-- Add plugin initialization and configuration code --}}
+
+@push('js')
+
+@endpush
+
+{{-- Add CSS styling --}}
+
+@isset($beautify)
+ @push('css')
+
+ @endpush
+@endisset
diff --git a/resources/views/vendor/adminlte/components/tool/modal.blade.php b/resources/views/vendor/adminlte/components/tool/modal.blade.php
new file mode 100644
index 0000000..8cee178
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/tool/modal.blade.php
@@ -0,0 +1,36 @@
+merge(['class' => $makeModalClass(), 'id' => $id]) }}
+ @isset($staticBackdrop) data-backdrop="static" data-keyboard="false" @endisset>
+
+
+
+
+ {{--Modal header --}}
+
+
+ {{-- Modal body --}}
+ @if(! $slot->isEmpty())
+
{{ $slot }}
+ @endif
+
+ {{-- Modal footer --}}
+
+
+
+
+
+
diff --git a/resources/views/vendor/adminlte/components/widget/alert.blade.php b/resources/views/vendor/adminlte/components/widget/alert.blade.php
new file mode 100644
index 0000000..1b7662c
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/widget/alert.blade.php
@@ -0,0 +1,26 @@
+merge(['class' => $makeAlertClass()]) }}>
+
+ {{-- Dismiss button --}}
+ @isset($dismissable)
+
+ ×
+
+ @endisset
+
+ {{-- Alert header --}}
+ @if(! empty($title) || ! empty($icon))
+
+ @if(! empty($icon))
+
+ @endif
+
+ @if(! empty($title))
+ {{ $title }}
+ @endif
+
+ @endif
+
+ {{-- Alert content --}}
+ {{ $slot }}
+
+
diff --git a/resources/views/vendor/adminlte/components/widget/callout.blade.php b/resources/views/vendor/adminlte/components/widget/callout.blade.php
new file mode 100644
index 0000000..a21462d
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/widget/callout.blade.php
@@ -0,0 +1,14 @@
+merge(['class' => $makeCalloutClass()]) }}>
+
+ {{-- Callout title --}}
+ @if(! empty($title) || ! empty($icon))
+
+ @isset($icon) @endisset
+ @isset($title) {{ $title }} @endisset
+
+ @endif
+
+ {{-- Callout content --}}
+ {{ $slot }}
+
+
diff --git a/resources/views/vendor/adminlte/components/widget/card.blade.php b/resources/views/vendor/adminlte/components/widget/card.blade.php
new file mode 100644
index 0000000..671115f
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/widget/card.blade.php
@@ -0,0 +1,62 @@
+merge(['class' => $makeCardClass()]) }}>
+
+ {{-- Card header --}}
+ @if(! $isCardHeaderEmpty(isset($toolsSlot)))
+
+ @endif
+
+ {{-- Card body --}}
+ @if(! $slot->isEmpty())
+
+ {{ $slot }}
+
+ @endif
+
+ {{-- Card footer --}}
+ @isset($footerSlot)
+
+ @endisset
+
+ {{-- Card overlay --}}
+ @if($disabled)
+
+
+
+ @endif
+
+
diff --git a/resources/views/vendor/adminlte/components/widget/info-box.blade.php b/resources/views/vendor/adminlte/components/widget/info-box.blade.php
new file mode 100644
index 0000000..5d33bec
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/widget/info-box.blade.php
@@ -0,0 +1,102 @@
+merge(['class' => $makeBoxClass()]) }}>
+
+ {{-- Box icon --}}
+ @isset($icon)
+
+
+
+ @endisset
+
+ {{-- Box content --}}
+
+
+ {{-- Box title --}}
+ @isset($title)
+ {{ $title }}
+ @endisset
+
+ {{-- Box short text --}}
+ @isset($text)
+ {{ $text }}
+ @endisset
+
+ {{-- Box progress bar --}}
+ @if(isset($progress) && isset($attributes['id']))
+
+ @elseif(isset($progress))
+
+ @endif
+
+ {{-- Box long description --}}
+ @isset($description)
+ {{ $description }}
+ @endisset
+
+
+
+
+
+{{-- Register Javascript utility class for this component --}}
+
+@once
+@push('js')
+
+@endpush
+@endonce
diff --git a/resources/views/vendor/adminlte/components/widget/profile-col-item.blade.php b/resources/views/vendor/adminlte/components/widget/profile-col-item.blade.php
new file mode 100644
index 0000000..c2bc41d
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/widget/profile-col-item.blade.php
@@ -0,0 +1,32 @@
+merge(['class' => "col-{$size}"]) }}>
+
+
+
+ {{-- Icon --}}
+ @isset($icon)
+
+ @endisset
+
+ {{-- Header --}}
+ @isset($title)
+
+ @endisset
+
+ {{-- Text --}}
+ @isset($text)
+
+
+ {{ $text }}
+
+
+ @endisset
+
+
+
+
diff --git a/resources/views/vendor/adminlte/components/widget/profile-row-item.blade.php b/resources/views/vendor/adminlte/components/widget/profile-row-item.blade.php
new file mode 100644
index 0000000..61fee1e
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/widget/profile-row-item.blade.php
@@ -0,0 +1,28 @@
+merge(['class' => "p-0 col-{$size}"]) }}>
+
+
+
+ {{-- Icon --}}
+ @isset($icon)
+
+ @endisset
+
+ {{-- Header --}}
+ @isset($title)
+ @if(! empty($url))
+ {{ $title }}
+ @else
+ {{ $title }}
+ @endif
+ @endisset
+
+ {{-- Text --}}
+ @isset($text)
+
+ {{ $text }}
+
+ @endisset
+
+
+
+
diff --git a/resources/views/vendor/adminlte/components/widget/profile-widget.blade.php b/resources/views/vendor/adminlte/components/widget/profile-widget.blade.php
new file mode 100644
index 0000000..b0dcdd2
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/widget/profile-widget.blade.php
@@ -0,0 +1,40 @@
+merge(['class' => $makeCardClass()]) }}>
+
+ {{-- Profile header --}}
+
+
+ {{-- Profile footer / Profile Items --}}
+ @if(! $slot->isEmpty())
+
+ @endif
+
+
diff --git a/resources/views/vendor/adminlte/components/widget/progress.blade.php b/resources/views/vendor/adminlte/components/widget/progress.blade.php
new file mode 100644
index 0000000..d4714ee
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/widget/progress.blade.php
@@ -0,0 +1,85 @@
+merge(['class' => $makeProgressClass()]) }}>
+
+ {{-- Progress bar --}}
+
+
+ {{-- Progress bar label --}}
+ @isset($withLabel)
+ {{ $value }}%
+ @else
+ {{ $value }}% Progress
+ @endisset
+
+
+
+
+
+{{-- Register Javascript utility class for this component --}}
+
+@once
+@push('js')
+
+@endpush
+@endonce
diff --git a/resources/views/vendor/adminlte/components/widget/small-box.blade.php b/resources/views/vendor/adminlte/components/widget/small-box.blade.php
new file mode 100644
index 0000000..4854d75
--- /dev/null
+++ b/resources/views/vendor/adminlte/components/widget/small-box.blade.php
@@ -0,0 +1,113 @@
+merge(['class' => $makeBoxClass()]) }}>
+
+ {{-- Box title and description --}}
+
+ @isset($title)
+
{{ $title }}
+ @endisset
+
+ @isset($text)
+ {{ $text }}
+ @endisset
+
+
+ {{-- Box icon --}}
+ @isset($icon)
+
+
+
+ @endisset
+
+ {{-- Box link --}}
+ @isset($url)
+
+ @endisset
+
+ {{-- Box overlay --}}
+
+
+
+
+
+
+{{-- Register Javascript utility class for this component --}}
+
+@once
+@push('js')
+
+@endpush
+@endonce
diff --git a/resources/views/vendor/adminlte/master.blade.php b/resources/views/vendor/adminlte/master.blade.php
new file mode 100644
index 0000000..348292d
--- /dev/null
+++ b/resources/views/vendor/adminlte/master.blade.php
@@ -0,0 +1,110 @@
+
+
+
+
+
+ {{-- Base Meta Tags --}}
+
+
+
+
+
+ {{-- Custom Meta Tags --}}
+ @yield('meta_tags')
+
+ {{-- Title --}}
+
+ @yield('title_prefix', config('adminlte.title_prefix', ''))
+ @yield('title', config('adminlte.title', 'AdminLTE 3'))
+ @yield('title_postfix', config('adminlte.title_postfix', ''))
+
+
+ {{-- Custom stylesheets (pre AdminLTE) --}}
+ @yield('adminlte_css_pre')
+
+ {{-- Base Stylesheets --}}
+ @if(!config('adminlte.enabled_laravel_mix'))
+
+
+
+
+ @if(config('adminlte.google_fonts.allowed', true))
+
+ @endif
+ @else
+
+ @endif
+
+ {{-- Extra Configured Plugins Stylesheets --}}
+ @include('adminlte::plugins', ['type' => 'css'])
+
+ {{-- Livewire Styles --}}
+ @if(config('adminlte.livewire'))
+ @if(app()->version() >= 7)
+ @livewireStyles
+ @else
+
+ @endif
+ @endif
+
+ {{-- Custom Stylesheets (post AdminLTE) --}}
+ @yield('adminlte_css')
+
+ {{-- Favicon --}}
+ @if(config('adminlte.use_ico_only'))
+
+ @elseif(config('adminlte.use_full_favicon'))
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ @endif
+
+
+
+
+
+ {{-- Body Content --}}
+ @yield('body')
+
+ {{-- Base Scripts --}}
+ @if(!config('adminlte.enabled_laravel_mix'))
+
+
+
+
+ @else
+
+ @endif
+
+ {{-- Extra Configured Plugins Scripts --}}
+ @include('adminlte::plugins', ['type' => 'js'])
+
+ {{-- Livewire Script --}}
+ @if(config('adminlte.livewire'))
+ @if(app()->version() >= 7)
+ @livewireScripts
+ @else
+
+ @endif
+ @endif
+
+ {{-- Custom Scripts --}}
+ @yield('adminlte_js')
+
+
+
+
diff --git a/resources/views/vendor/adminlte/page.blade.php b/resources/views/vendor/adminlte/page.blade.php
new file mode 100644
index 0000000..881ac5e
--- /dev/null
+++ b/resources/views/vendor/adminlte/page.blade.php
@@ -0,0 +1,57 @@
+@extends('adminlte::master')
+
+@inject('layoutHelper', 'JeroenNoten\LaravelAdminLte\Helpers\LayoutHelper')
+
+@section('adminlte_css')
+ @stack('css')
+ @yield('css')
+@stop
+
+@section('classes_body', $layoutHelper->makeBodyClasses())
+
+@section('body_data', $layoutHelper->makeBodyData())
+
+@section('body')
+
+
+ {{-- Preloader Animation --}}
+ @if($layoutHelper->isPreloaderEnabled())
+ @include('adminlte::partials.common.preloader')
+ @endif
+
+ {{-- Top Navbar --}}
+ @if($layoutHelper->isLayoutTopnavEnabled())
+ @include('adminlte::partials.navbar.navbar-layout-topnav')
+ @else
+ @include('adminlte::partials.navbar.navbar')
+ @endif
+
+ {{-- Left Main Sidebar --}}
+ @if(!$layoutHelper->isLayoutTopnavEnabled())
+ @include('adminlte::partials.sidebar.left-sidebar')
+ @endif
+
+ {{-- Content Wrapper --}}
+ @empty($iFrameEnabled)
+ @include('adminlte::partials.cwrapper.cwrapper-default')
+ @else
+ @include('adminlte::partials.cwrapper.cwrapper-iframe')
+ @endempty
+
+ {{-- Footer --}}
+ @hasSection('footer')
+ @include('adminlte::partials.footer.footer')
+ @endif
+
+ {{-- Right Control Sidebar --}}
+ @if(config('adminlte.right_sidebar'))
+ @include('adminlte::partials.sidebar.right-sidebar')
+ @endif
+
+
+@stop
+
+@section('adminlte_js')
+ @stack('js')
+ @yield('js')
+@stop
diff --git a/resources/views/vendor/adminlte/partials/common/brand-logo-xl.blade.php b/resources/views/vendor/adminlte/partials/common/brand-logo-xl.blade.php
new file mode 100644
index 0000000..f081a14
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/common/brand-logo-xl.blade.php
@@ -0,0 +1,28 @@
+@inject('layoutHelper', 'JeroenNoten\LaravelAdminLte\Helpers\LayoutHelper')
+
+@php( $dashboard_url = View::getSection('dashboard_url') ?? config('adminlte.dashboard_url', 'home') )
+
+@if (config('adminlte.use_route_url', false))
+ @php( $dashboard_url = $dashboard_url ? route($dashboard_url) : '' )
+@else
+ @php( $dashboard_url = $dashboard_url ? url($dashboard_url) : '' )
+@endif
+
+isLayoutTopnavEnabled())
+ class="navbar-brand logo-switch {{ config('adminlte.classes_brand') }}"
+ @else
+ class="brand-link logo-switch {{ config('adminlte.classes_brand') }}"
+ @endif>
+
+ {{-- Small brand logo --}}
+
+
+ {{-- Large brand logo --}}
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/common/brand-logo-xs.blade.php b/resources/views/vendor/adminlte/partials/common/brand-logo-xs.blade.php
new file mode 100644
index 0000000..38cc4d9
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/common/brand-logo-xs.blade.php
@@ -0,0 +1,29 @@
+@inject('layoutHelper', 'JeroenNoten\LaravelAdminLte\Helpers\LayoutHelper')
+
+@php( $dashboard_url = View::getSection('dashboard_url') ?? config('adminlte.dashboard_url', 'home') )
+
+@if (config('adminlte.use_route_url', false))
+ @php( $dashboard_url = $dashboard_url ? route($dashboard_url) : '' )
+@else
+ @php( $dashboard_url = $dashboard_url ? url($dashboard_url) : '' )
+@endif
+
+isLayoutTopnavEnabled())
+ class="navbar-brand {{ config('adminlte.classes_brand') }}"
+ @else
+ class="brand-link {{ config('adminlte.classes_brand') }}"
+ @endif>
+
+ {{-- Small brand logo --}}
+
+
+ {{-- Brand text --}}
+
+ {!! config('adminlte.logo', 'Admin LTE') !!}
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/common/preloader.blade.php b/resources/views/vendor/adminlte/partials/common/preloader.blade.php
new file mode 100644
index 0000000..427292d
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/common/preloader.blade.php
@@ -0,0 +1,10 @@
+
+
+ {{-- Preloader logo --}}
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/cwrapper/cwrapper-default.blade.php b/resources/views/vendor/adminlte/partials/cwrapper/cwrapper-default.blade.php
new file mode 100644
index 0000000..ad61b0e
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/cwrapper/cwrapper-default.blade.php
@@ -0,0 +1,28 @@
+@inject('layoutHelper', 'JeroenNoten\LaravelAdminLte\Helpers\LayoutHelper')
+
+@if($layoutHelper->isLayoutTopnavEnabled())
+ @php( $def_container_class = 'container' )
+@else
+ @php( $def_container_class = 'container-fluid' )
+@endif
+
+{{-- Default Content Wrapper --}}
+
+
+ {{-- Content Header --}}
+ @hasSection('content_header')
+
+ @endif
+
+ {{-- Main Content --}}
+
+
+ @yield('content')
+
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/cwrapper/cwrapper-iframe.blade.php b/resources/views/vendor/adminlte/partials/cwrapper/cwrapper-iframe.blade.php
new file mode 100644
index 0000000..fbf6269
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/cwrapper/cwrapper-iframe.blade.php
@@ -0,0 +1,117 @@
+{{-- IFrame Content Wrapper --}}
+
+
+ {{-- IFrame Navbar --}}
+
+
+ {{-- Close Buttons --}}
+ @if(config('adminlte.iframe.buttons.close_all', true) || config('adminlte.iframe.buttons.close_all_other', true))
+
+
+
+ @elseif(config('adminlte.iframe.buttons.close', false))
+
+
+ {{ __('adminlte::iframe.btn_close') }}
+
+
+ @endif
+
+ {{-- Scroll Left Button --}}
+ @if(config('adminlte.iframe.buttons.scroll_left', true))
+
+
+
+ @endif
+
+ {{-- Tab List --}}
+
+
+ {{-- Scroll Right Button --}}
+ @if(config('adminlte.iframe.buttons.scroll_right', true))
+
+
+
+ @endif
+
+ {{-- Fullscreen Button --}}
+ @if(config('adminlte.iframe.buttons.fullscreen', true))
+
+
+
+ @endif
+
+
+
+ {{-- IFrame Tab Content --}}
+
+
+ {{-- Loading Overlay --}}
+
+
+
+
+
+ {{ __('adminlte::iframe.tab_loading') }}
+
+
+
+
+ {{-- Default Tab Content --}}
+ @if(! empty(config('adminlte.iframe.default_tab.url')))
+
+
+
+ @endif
+
+ {{-- Empty Tab --}}
+
+
+ {{ __('adminlte::iframe.tab_empty') }}
+
+
+
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/footer/footer.blade.php b/resources/views/vendor/adminlte/partials/footer/footer.blade.php
new file mode 100644
index 0000000..ad52ca6
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/footer/footer.blade.php
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/resources/views/vendor/adminlte/partials/navbar/dropdown-item-link.blade.php b/resources/views/vendor/adminlte/partials/navbar/dropdown-item-link.blade.php
new file mode 100644
index 0000000..115a2c4
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/navbar/dropdown-item-link.blade.php
@@ -0,0 +1,26 @@
+
+
+
+
+ {{-- Icon (optional) --}}
+ @isset($item['icon'])
+
+ @endisset
+
+ {{-- Text --}}
+ {{ $item['text'] }}
+
+ {{-- Label (optional) --}}
+ @isset($item['label'])
+
+ {{ $item['label'] }}
+
+ @endisset
+
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/navbar/dropdown-item-submenu.blade.php b/resources/views/vendor/adminlte/partials/navbar/dropdown-item-submenu.blade.php
new file mode 100644
index 0000000..81a8845
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/navbar/dropdown-item-submenu.blade.php
@@ -0,0 +1,31 @@
+
diff --git a/resources/views/vendor/adminlte/partials/navbar/dropdown-item.blade.php b/resources/views/vendor/adminlte/partials/navbar/dropdown-item.blade.php
new file mode 100644
index 0000000..6391e24
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/navbar/dropdown-item.blade.php
@@ -0,0 +1,13 @@
+@inject('navbarItemHelper', 'JeroenNoten\LaravelAdminLte\Helpers\NavbarItemHelper')
+
+@if ($navbarItemHelper->isSubmenu($item))
+
+ {{-- Dropdown submenu --}}
+ @include('adminlte::partials.navbar.dropdown-item-submenu')
+
+@elseif ($navbarItemHelper->isLink($item))
+
+ {{-- Dropdown link --}}
+ @include('adminlte::partials.navbar.dropdown-item-link')
+
+@endif
diff --git a/resources/views/vendor/adminlte/partials/navbar/menu-item-dropdown-menu.blade.php b/resources/views/vendor/adminlte/partials/navbar/menu-item-dropdown-menu.blade.php
new file mode 100644
index 0000000..50394f2
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/navbar/menu-item-dropdown-menu.blade.php
@@ -0,0 +1,31 @@
+
+
+ {{-- Menu toggler --}}
+
+
+ {{-- Icon (optional) --}}
+ @isset($item['icon'])
+
+ @endisset
+
+ {{-- Text --}}
+ {{ $item['text'] }}
+
+ {{-- Label (optional) --}}
+ @isset($item['label'])
+
+ {{ $item['label'] }}
+
+ @endisset
+
+
+
+ {{-- Menu items --}}
+
+ @each('adminlte::partials.navbar.dropdown-item', $item['submenu'], 'item')
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/navbar/menu-item-dropdown-user-menu.blade.php b/resources/views/vendor/adminlte/partials/navbar/menu-item-dropdown-user-menu.blade.php
new file mode 100644
index 0000000..aae4658
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/navbar/menu-item-dropdown-user-menu.blade.php
@@ -0,0 +1,86 @@
+@php( $logout_url = View::getSection('logout_url') ?? config('adminlte.logout_url', 'logout') )
+@php( $profile_url = View::getSection('profile_url') ?? config('adminlte.profile_url', 'logout') )
+
+@if (config('adminlte.usermenu_profile_url', false))
+ @php( $profile_url = Auth::user()->adminlte_profile_url() )
+@endif
+
+@if (config('adminlte.use_route_url', false))
+ @php( $profile_url = $profile_url ? route($profile_url) : '' )
+ @php( $logout_url = $logout_url ? route($logout_url) : '' )
+@else
+ @php( $profile_url = $profile_url ? url($profile_url) : '' )
+ @php( $logout_url = $logout_url ? url($logout_url) : '' )
+@endif
+
+
diff --git a/resources/views/vendor/adminlte/partials/navbar/menu-item-fullscreen-widget.blade.php b/resources/views/vendor/adminlte/partials/navbar/menu-item-fullscreen-widget.blade.php
new file mode 100644
index 0000000..fda67bf
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/navbar/menu-item-fullscreen-widget.blade.php
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/navbar/menu-item-left-sidebar-toggler.blade.php b/resources/views/vendor/adminlte/partials/navbar/menu-item-left-sidebar-toggler.blade.php
new file mode 100644
index 0000000..d6c00f9
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/navbar/menu-item-left-sidebar-toggler.blade.php
@@ -0,0 +1,15 @@
+
+
+
+ {{ __('adminlte::adminlte.toggle_navigation') }}
+
+
\ No newline at end of file
diff --git a/resources/views/vendor/adminlte/partials/navbar/menu-item-link.blade.php b/resources/views/vendor/adminlte/partials/navbar/menu-item-link.blade.php
new file mode 100644
index 0000000..5dd3d07
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/navbar/menu-item-link.blade.php
@@ -0,0 +1,26 @@
+
+
+
+
+ {{-- Icon (optional) --}}
+ @isset($item['icon'])
+
+ @endisset
+
+ {{-- Text --}}
+ {{ $item['text'] }}
+
+ {{-- Label (optional) --}}
+ @isset($item['label'])
+
+ {{ $item['label'] }}
+
+ @endisset
+
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/navbar/menu-item-logout-link.blade.php b/resources/views/vendor/adminlte/partials/navbar/menu-item-logout-link.blade.php
new file mode 100644
index 0000000..319bf0f
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/navbar/menu-item-logout-link.blade.php
@@ -0,0 +1,20 @@
+@php( $logout_url = View::getSection('logout_url') ?? config('adminlte.logout_url', 'logout') )
+
+@if (config('adminlte.use_route_url', false))
+ @php( $logout_url = $logout_url ? route($logout_url) : '' )
+@else
+ @php( $logout_url = $logout_url ? url($logout_url) : '' )
+@endif
+
+
+
+
+ {{ __('adminlte::adminlte.log_out') }}
+
+
+
\ No newline at end of file
diff --git a/resources/views/vendor/adminlte/partials/navbar/menu-item-right-sidebar-toggler.blade.php b/resources/views/vendor/adminlte/partials/navbar/menu-item-right-sidebar-toggler.blade.php
new file mode 100644
index 0000000..2caa557
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/navbar/menu-item-right-sidebar-toggler.blade.php
@@ -0,0 +1,14 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/views/vendor/adminlte/partials/navbar/menu-item-search-form.blade.php b/resources/views/vendor/adminlte/partials/navbar/menu-item-search-form.blade.php
new file mode 100644
index 0000000..4363bd1
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/navbar/menu-item-search-form.blade.php
@@ -0,0 +1,36 @@
+
+
+ {{-- Search toggle button --}}
+
+
+
+
+ {{-- Search bar --}}
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/navbar/menu-item.blade.php b/resources/views/vendor/adminlte/partials/navbar/menu-item.blade.php
new file mode 100644
index 0000000..8a5620b
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/navbar/menu-item.blade.php
@@ -0,0 +1,48 @@
+@inject('navbarItemHelper', 'JeroenNoten\LaravelAdminLte\Helpers\NavbarItemHelper')
+
+@if ($navbarItemHelper->isSearch($item))
+
+ {{-- Search form --}}
+ @include('adminlte::partials.navbar.menu-item-search-form')
+
+@elseif ($navbarItemHelper->isNotification($item))
+
+ {{-- Notification link --}}
+
+
+@elseif ($navbarItemHelper->isFullscreen($item))
+
+ {{-- Fullscreen toggle widget --}}
+ @include('adminlte::partials.navbar.menu-item-fullscreen-widget')
+
+@elseif ($navbarItemHelper->isDarkmode($item))
+
+ {{-- Darkmode toggle widget --}}
+
+
+@elseif ($navbarItemHelper->isSubmenu($item))
+
+ {{-- Dropdown menu --}}
+ @include('adminlte::partials.navbar.menu-item-dropdown-menu')
+
+@elseif ($navbarItemHelper->isLink($item))
+
+ {{-- Link --}}
+ @include('adminlte::partials.navbar.menu-item-link')
+
+@endif
diff --git a/resources/views/vendor/adminlte/partials/navbar/navbar-layout-topnav.blade.php b/resources/views/vendor/adminlte/partials/navbar/navbar-layout-topnav.blade.php
new file mode 100644
index 0000000..850d589
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/navbar/navbar-layout-topnav.blade.php
@@ -0,0 +1,57 @@
+
+
+
+
+ {{-- Navbar brand logo --}}
+ @if(config('adminlte.logo_img_xl'))
+ @include('adminlte::partials.common.brand-logo-xl')
+ @else
+ @include('adminlte::partials.common.brand-logo-xs')
+ @endif
+
+ {{-- Navbar toggler button --}}
+
+
+
+
+ {{-- Navbar collapsible menu --}}
+
+ {{-- Navbar left links --}}
+
+ {{-- Configured left links --}}
+ @each('adminlte::partials.navbar.menu-item', $adminlte->menu('navbar-left'), 'item')
+
+ {{-- Custom left links --}}
+ @yield('content_top_nav_left')
+
+
+
+ {{-- Navbar right links --}}
+
+ {{-- Custom right links --}}
+ @yield('content_top_nav_right')
+
+ {{-- Configured right links --}}
+ @each('adminlte::partials.navbar.menu-item', $adminlte->menu('navbar-right'), 'item')
+
+ {{-- User menu link --}}
+ @if(Auth::user())
+ @if(config('adminlte.usermenu_enabled'))
+ @include('adminlte::partials.navbar.menu-item-dropdown-user-menu')
+ @else
+ @include('adminlte::partials.navbar.menu-item-logout-link')
+ @endif
+ @endif
+
+ {{-- Right sidebar toggler link --}}
+ @if(config('adminlte.right_sidebar'))
+ @include('adminlte::partials.navbar.menu-item-right-sidebar-toggler')
+ @endif
+
+
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/navbar/navbar.blade.php b/resources/views/vendor/adminlte/partials/navbar/navbar.blade.php
new file mode 100644
index 0000000..7c38749
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/navbar/navbar.blade.php
@@ -0,0 +1,40 @@
+
+
+ {{-- Navbar left links --}}
+
+ {{-- Left sidebar toggler link --}}
+ @include('adminlte::partials.navbar.menu-item-left-sidebar-toggler')
+
+ {{-- Configured left links --}}
+ @each('adminlte::partials.navbar.menu-item', $adminlte->menu('navbar-left'), 'item')
+
+ {{-- Custom left links --}}
+ @yield('content_top_nav_left')
+
+
+ {{-- Navbar right links --}}
+
+ {{-- Custom right links --}}
+ @yield('content_top_nav_right')
+
+ {{-- Configured right links --}}
+ @each('adminlte::partials.navbar.menu-item', $adminlte->menu('navbar-right'), 'item')
+
+ {{-- User menu link --}}
+ @if(Auth::user())
+ @if(config('adminlte.usermenu_enabled'))
+ @include('adminlte::partials.navbar.menu-item-dropdown-user-menu')
+ @else
+ @include('adminlte::partials.navbar.menu-item-logout-link')
+ @endif
+ @endif
+
+ {{-- Right sidebar toggler link --}}
+ @if(config('adminlte.right_sidebar'))
+ @include('adminlte::partials.navbar.menu-item-right-sidebar-toggler')
+ @endif
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/sidebar/left-sidebar.blade.php b/resources/views/vendor/adminlte/partials/sidebar/left-sidebar.blade.php
new file mode 100644
index 0000000..022e072
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/sidebar/left-sidebar.blade.php
@@ -0,0 +1,27 @@
+
+
+ {{-- Sidebar brand logo --}}
+ @if(config('adminlte.logo_img_xl'))
+ @include('adminlte::partials.common.brand-logo-xl')
+ @else
+ @include('adminlte::partials.common.brand-logo-xs')
+ @endif
+
+ {{-- Sidebar menu --}}
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/sidebar/menu-item-header.blade.php b/resources/views/vendor/adminlte/partials/sidebar/menu-item-header.blade.php
new file mode 100644
index 0000000..cf641d3
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/sidebar/menu-item-header.blade.php
@@ -0,0 +1,5 @@
+
diff --git a/resources/views/vendor/adminlte/partials/sidebar/menu-item-link.blade.php b/resources/views/vendor/adminlte/partials/sidebar/menu-item-link.blade.php
new file mode 100644
index 0000000..a6ba0b3
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/sidebar/menu-item-link.blade.php
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+ {{ $item['text'] }}
+
+ @isset($item['label'])
+
+ {{ $item['label'] }}
+
+ @endisset
+
+
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/sidebar/menu-item-search-form.blade.php b/resources/views/vendor/adminlte/partials/sidebar/menu-item-search-form.blade.php
new file mode 100644
index 0000000..756240d
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/sidebar/menu-item-search-form.blade.php
@@ -0,0 +1,25 @@
+
+
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/sidebar/menu-item-search-menu.blade.php b/resources/views/vendor/adminlte/partials/sidebar/menu-item-search-menu.blade.php
new file mode 100644
index 0000000..e1818db
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/sidebar/menu-item-search-menu.blade.php
@@ -0,0 +1,22 @@
+
+
+
+
+
diff --git a/resources/views/vendor/adminlte/partials/sidebar/menu-item-treeview-menu.blade.php b/resources/views/vendor/adminlte/partials/sidebar/menu-item-treeview-menu.blade.php
new file mode 100644
index 0000000..9bd348c
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/sidebar/menu-item-treeview-menu.blade.php
@@ -0,0 +1,29 @@
+
diff --git a/resources/views/vendor/adminlte/partials/sidebar/menu-item.blade.php b/resources/views/vendor/adminlte/partials/sidebar/menu-item.blade.php
new file mode 100644
index 0000000..5be9dc6
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/sidebar/menu-item.blade.php
@@ -0,0 +1,28 @@
+@inject('sidebarItemHelper', 'JeroenNoten\LaravelAdminLte\Helpers\SidebarItemHelper')
+
+@if ($sidebarItemHelper->isHeader($item))
+
+ {{-- Header --}}
+ @include('adminlte::partials.sidebar.menu-item-header')
+
+@elseif ($sidebarItemHelper->isLegacySearch($item) || $sidebarItemHelper->isCustomSearch($item))
+
+ {{-- Search form --}}
+ @include('adminlte::partials.sidebar.menu-item-search-form')
+
+@elseif ($sidebarItemHelper->isMenuSearch($item))
+
+ {{-- Search menu --}}
+ @include('adminlte::partials.sidebar.menu-item-search-menu')
+
+@elseif ($sidebarItemHelper->isSubmenu($item))
+
+ {{-- Treeview menu --}}
+ @include('adminlte::partials.sidebar.menu-item-treeview-menu')
+
+@elseif ($sidebarItemHelper->isLink($item))
+
+ {{-- Link --}}
+ @include('adminlte::partials.sidebar.menu-item-link')
+
+@endif
diff --git a/resources/views/vendor/adminlte/partials/sidebar/right-sidebar.blade.php b/resources/views/vendor/adminlte/partials/sidebar/right-sidebar.blade.php
new file mode 100644
index 0000000..207d920
--- /dev/null
+++ b/resources/views/vendor/adminlte/partials/sidebar/right-sidebar.blade.php
@@ -0,0 +1,3 @@
+
diff --git a/resources/views/vendor/adminlte/plugins.blade.php b/resources/views/vendor/adminlte/plugins.blade.php
new file mode 100644
index 0000000..5f988c9
--- /dev/null
+++ b/resources/views/vendor/adminlte/plugins.blade.php
@@ -0,0 +1,36 @@
+@foreach(config('adminlte.plugins') as $pluginName => $plugin)
+
+ {{-- Check whether the plugin is active --}}
+
+ @php
+ $plugSection = View::getSection('plugins.' . ($plugin['name'] ?? $pluginName));
+ $isPlugActive = $plugin['active']
+ ? ! isset($plugSection) || $plugSection
+ : ! empty($plugSection);
+ @endphp
+
+ {{-- When the plugin is active, include its files --}}
+
+ @if($isPlugActive)
+ @foreach($plugin['files'] as $file)
+
+ {{-- Setup the file location --}}
+
+ @php
+ if (! empty($file['asset'])) {
+ $file['location'] = asset($file['location']);
+ }
+ @endphp
+
+ {{-- Check the requested file type --}}
+
+ @if($file['type'] == $type && $type == 'css')
+
+ @elseif($file['type'] == $type && $type == 'js')
+
+ @endif
+
+ @endforeach
+ @endif
+
+@endforeach