@vite(['resources/css/app.css', 'resources/js/franchise.js'])
@include('franchise.partials.topbar', [ 'heading' => $heading ?? 'Dashboard', 'subheading' => $subheading ?? null, ])
@if(session('status'))
{{ session('status') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @yield('content')
@include('franchise.partials.toast') @include('franchise.partials.modal')