@php
$adminUser = App\Models\User::where('id', session('user_id'))->first();
@endphp
@if($adminUser)
@stack('modals')
{{ $adminUser->name }} logged in as: {{ Auth::user()->name }}
Exit
@endif
@yield('content')
@include('includes.footer')