@extends('theme::layout') @section('title', 'Prayer Board') @section('content') {{-- ═══════════════════════════════════════════════════════ HERO SECTION ═══════════════════════════════════════════════════════ --}} @include('theme::_hero_banner', [ 'heroTitle' => 'Prayer Board', 'heroSubtitle' => 'You are not alone. Share your heart, and let the community stand with you in prayer.', 'heroIcon' => '🙏', 'breadcrumbs' => [ ['label' => 'Home', 'url' => route('web.home')], ['label' => 'Prayer Board'], ], ]) {{-- ═══════════════════════════════════════════════════════ TWO-COLUMN: INFO + PRAYER CARDS ═══════════════════════════════════════════════════════ --}}
{{-- LEFT — Process info block --}} {{-- RIGHT — Prayer cards --}}

Community Prayer Requests

@forelse($requests as $item) @include('theme::_card_prayer_item', ['item' => $item]) @empty

🙏

No prayer requests yet.

Be the first — use the form below.

@endforelse @if($requests->hasPages())
{{ $requests->links() }}
@endif
{{-- ═══════════════════════════════════════════════════════ FULL-WIDTH SUBMIT SECTION ═══════════════════════════════════════════════════════ --}}
{{-- LEFT — Invitation copy --}}

Share Your Heart

Let Us Pray
With You

Whatever you are facing — illness, grief, uncertainty, or simply gratitude — our community is here. Submit your prayer request and let hundreds of believers stand alongside you before the throne of grace.

  • All submissions reviewed before publishing — your dignity is protected.
  • Prayers remain active on the board for up to 60 days.
  • When God answers, share your testimony and encourage the community.
{{-- RIGHT — Form --}}

Submit a Prayer Request

Reviewed & published within 24 hours.

@if(session('success'))
{{ session('success') }}
@endif
@auth @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Between 10 and 500 characters.

@if(isset($categories) && $categories->count())
@endif
@else

You need to be logged in to submit a prayer request.

@endauth
@endsection