@extends('adminlte::master') @php $authType = $authType ?? 'login'; $dashboardUrl = View::getSection('dashboard_url') ?? config('adminlte.dashboard_url', 'home'); if (config('adminlte.use_route_url', false)) { $dashboardUrl = $dashboardUrl ? route($dashboardUrl) : ''; } else { $dashboardUrl = $dashboardUrl ? url($dashboardUrl) : ''; } $bodyClasses = "{$authType}-page"; if (! empty(config('adminlte.layout_dark_mode', null))) { $bodyClasses .= ' dark-mode'; } @endphp @section('adminlte_css') @stack('css') @yield('css') @stop @section('classes_body'){{ $bodyClasses }}@stop @section('body')
{{-- Logo --}} {{-- Card Box --}}
@hasSection('auth_header')

@yield('auth_header')

@endif
@yield('auth_body')
@hasSection('auth_footer') @endif
{{-- Global footer also on auth pages --}} @include('adminlte::partials.footer.footer') @stop @section('adminlte_js') @stack('js') @yield('js') @stop