@stack('head')
@if ($withChrome ?? true)
@include('site.partials.header', [
'platformName' => $platformName ?? 'MadarX',
'iconUrl' => $iconUrl ?? null,
])
@endif
@yield('body')
@if ($withChrome ?? true)
@include('site.partials.footer', ['platformName' => $platformName ?? 'MadarX'])
@endif
@stack('scripts')