@extends('theme::layout') @section('title', 'Guest Login') @section('content') @include('theme::_hero_banner', [ 'heroTitle' => 'Guest Login', 'heroSubtitle' => 'Login to submit prayer requests, help requests, and blog comments.', 'heroIcon' => '🔐', 'breadcrumbs' => [ ['label' => 'Home', 'url' => route('web.home')], ['label' => 'Guest Login'], ], ])
{{-- ── Login card: narrow centred column ──────────────────────── --}}
@if($guestLoginBlocked ?? false) @include('theme::_access_blocked', [ 'blockedTitle' => 'Guest Login is Currently Disabled', 'blockedMessage' => 'Guest logins are not available at this time. Please check back later or contact the church office for assistance.', ]) @else @if(session('auth_notice'))
{{ session('auth_notice') }}
@endif {{-- ── Guest Login Card ─────────────────────────────────────── --}}

Welcome Back

Login with your registered email and password.

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Forgot password?

Don't have an account? Register here

@endif
{{-- end narrow login column --}} {{-- ── Church Member Section: 2/3 of page width ───────────────── --}}

Are You a Church Member?

This login above is for guests only. Members have a dedicated experience.

@if($memberLoginBlocked ?? false)
@include('theme::_access_blocked', [ 'blockedTitle' => 'Member Web Login is Currently Disabled', 'blockedMessage' => 'Web login for church members is not available at this time. Please use the mobile app to access your account.', ])
@else
{{-- App option --}}
📱

Use the Mobile App

Recommended for members

Get the full member experience — attendance, groups, bulletins, prayer, and more — right from your phone.

{{-- Web login option --}}
🖥️

Login via Web

Access from any browser

Prefer a browser? Login to your member account directly on the web to access your profile and church activity.

Member Web Login
@endif
{{-- end max-w-4xl --}}
@endsection