@extends('theme::layout') @section('title', 'Guest Registration') @section('content') @include('theme::_hero_banner', [ 'heroTitle' => 'Guest Registration', 'heroSubtitle' => 'Create a free account to connect with our community.', 'heroIcon' => '✋', 'breadcrumbs' => [ ['label' => 'Home', 'url' => route('web.home')], ['label' => 'Guest Registration'], ], ])
@if(session('auth_notice'))
{{ session('auth_notice') }}
@endif @if($blocked ?? false) @include('theme::_access_blocked', [ 'blockedTitle' => 'Guest Registration is Currently Closed', 'blockedMessage' => 'New guest registrations are not being accepted at this time. Please check back later or contact the church office to be added manually.', ]) @else
{{-- ── LEFT: Why Register ───────────────────────────────────── --}}

Free & Takes 1 Minute

Join Our Community
as a Guest

You don't need to be a church member to participate. Register as a guest and start engaging with our community right away — no fees, no commitments.

{{-- What you can do --}}

What You Can Do After Registering

  • 🙏

    Submit Prayer Requests

    Share your heart with the congregation and let the community pray alongside you.

  • 🤝

    Post Help Requests

    Let the church know when you need support — practical, emotional, or spiritual.

  • 💬

    Comment on Blog Posts

    Share your thoughts, ask questions, and engage with sermons and articles.

{{-- Why we ask --}}

Why We Ask for Your Details

  • Name & Gender — Helps us address you personally in communications.
  • Date of Birth — Allows the church to send birthday blessings.
  • Mobile & Email — For account recovery and important church announcements only.
  • Privacy Guaranteed — Your information is never shared with third parties.
  • No Spam — We only contact you for matters directly relevant to the church.
{{-- Scripture --}}

A Word of Welcome

"Therefore welcome one another as Christ has welcomed you, for the glory of God."

— Romans 15:7

{{-- ── RIGHT: Registration Form ─────────────────────────────── --}}

Create Your Guest Account

Free registration — no membership required.

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if(config('settings.guest_register_captcha_status')=="1") @error('g-recaptcha-response')

{{ $message }}

@enderror @endif

Already have an account? Login here

@endif
@endsection @push('scripts') @php $recaptchaKey = env('GOOGLE_RECAPTCHA_KEY', ''); @endphp @if($recaptchaKey && config('settings.guest_register_captcha_status')=="1") @endif @endpush