{{-- Shell for the marketplace's own sign-in screens. Deliberately lighter than the site layout: no navigation, no search and no footer links, so nothing competes with the single action on the page. The panel at /admin has its own equivalent — the two never share a screen. --}} @yield('title') — {{ setting('site_name', config('app.name')) }} @vite(['resources/css/app.css', 'resources/js/app.js'])

@yield('heading')

@hasSection('intro')

@yield('intro')

@endif @if (session('success')) {{ session('success') }} @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@yield('form')
@hasSection('footer')

@yield('footer')

@endif

{{ __('Back to :site', ['site' => setting('site_name', config('app.name'))]) }}