@extends('adminlte::master') @php $dashboard_url = View::getSection('dashboard_url') ?? config('adminlte.dashboard_url', 'home'); if (config('adminlte.use_route_url', false)) { $dashboard_url = $dashboard_url ? route($dashboard_url) : ''; } else { $dashboard_url = $dashboard_url ? url($dashboard_url) : ''; } $bodyClasses = ($auth_type ?? 'login') . '-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 --}}
{{-- Card Header --}} @hasSection('auth_header')

@yield('auth_header')

@endif {{-- Card Body --}}
@yield('auth_body')
{{-- Card Footer --}} @hasSection('auth_footer') @endif
@stop @section('adminlte_js') @stack('js') @yield('js') @stop