{{-- Reusable "Continue with Google" button. - Renders only when Google SSO is enabled in admin settings. - Uses url('/auth/google') (NOT a named route) so the link always points at the CURRENT subdomain — the OAuth flow and callback then stay on the same host, keeping the per-subdomain session intact. - Self-contained inline styles so it looks right in any auth layout (escrow, inventory, marketplace) without depending on layout CSS. Optional: pass $label to change the divider text, e.g. @include('partials.google-signin', ['label' => 'or sign up with']) --}} @if(\App\Support\GoogleSso::enabled())
{{ $label ?? 'or continue with' }}
Continue with Google @endif