@extends('layouts.koinonia.app') @section('title', $settings->title ?? $page_title) @push("after-styles") @endpush @section('content')
{{-- DYNAMIC HERO SECTION --}}
@if($settings->media_type == 'video') @else @endif

{{ $settings->title }}

{{ $settings->subtitle }}

{{-- DYNAMIC DESCRIPTION --}}
{!! $settings->description !!}
{{-- DYNAMIC BUTTONS --}}
@if($settings->btn1_name) {{ $settings->btn1_name }} @endif @if($settings->btn2_name) {{ $settings->btn2_name }} @endif

Share Your Testimony

{{-- TESTIMONY SUBMISSION FORM --}}
@csrf
{{-- Name Fields --}}
Name*
{{-- Email Field --}}
{{-- Message Field --}}

{{-- TESTIMONY FEED (BANK) --}}

Recent Faith Stories

@forelse($testimonies as $testimony)
{{ $testimony->full_name }}
{{ $testimony->created_at->format('M d, Y') }}

"{!! nl2br(e($testimony->message)) !!}"

@empty

Be the first to share your testimony.

@endforelse
@endsection