@php /** * Auth layout - centered card on a branded panel. * * Optional split-screen marketing layout: a view sets $authAside (an array with * eyebrow/title/text/points) to render the brand gradient value panel beside the * form. When unset the layout falls back to the single centered card. * * @var array|null $authAside ['eyebrow','title','text','points'=>[['icon','label'],...]] */ $aside = $authAside ?? null; $right = $authRight ?? null; // optional right column (partial name) — preview-only demo access $split = is_array($aside) || (bool) $right; $threeCol = is_array($aside) && (bool) $right; // left explanation + center form + right access @endphp
@include('partials.head', ['title' => $title ?? t_raw('common.sign_in'), 'pageStyles' => $pageStyles ?? []]) {!! t('common.skip_to_content') !!}