@extends('layouts.app') @section('title', 'Settings โ€” Edit Landing Page') @section('page-title', 'Edit Landing Page') @push('styles') @endpush @section('content')
@php $summaryParts = collect([ $landingPage->property_type ? ($typeLabels[$landingPage->property_type] ?? $landingPage->property_type) : null, $landingPage->city, $landingPage->purpose === 'for_rent' ? 'Rent' : ($landingPage->purpose === 'for_sale' ? 'Sale' : null), ])->filter()->implode(' ยท '); @endphp

Edit Landing Page Override

{{ $summaryParts }}
Back to list
@csrf @method('PATCH')
Fill in at least one of Property Type, City, or Purpose โ€” you don't need all three.
@error('property_type')
{{ $message }}
@enderror
@error('city')
{{ $message }}
@enderror
@error('purpose')
{{ $message }}
@enderror

@error('seo_title')
{{ $message }}
@enderror
@error('seo_description')
{{ $message }}
@enderror
@error('intro_content')
{{ $message }}
@enderror
Rendered above the results grid on the public category page.
@error('footer_seo_content')
{{ $message }}
@enderror
Plain text (no rich formatting) โ€” rendered above the footer on this category page only, with line breaks preserved. Left blank, this section doesn't show at all.
@endsection @push('scripts') @endpush