B
BizSpot
Home
Register Shop
@auth
{{ Auth::user()->name }}
My Shops
@if(Auth::user()->hasRole('admin'))
Admin Panel
Shop Applications
@endif
@csrf
Logout
@else
Login
Register
@endauth
Home
Register Shop
@auth
My Shops
@if(Auth::user()->hasRole('admin'))
Admin Panel
@endif
@csrf
Logout
@else
Login
Register
@endauth
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @yield('content')
@yield('scripts')