@extends('layouts.app') @section('title', 'Settings — Home Page Content') @section('page-title', 'Home Page Content') @section('content')

Home Page Content

Every editable heading, description, and stat shown on the public home page
@csrf @method('PATCH')
Hero Section
Shown above the property search at the top of the home page.
@error('home_hero_heading')
{{ $message }}
@enderror
A literal <br> can be used to force a line break, e.g. "Find your place in <br> Indore."
@error('home_hero_description')
{{ $message }}
@enderror
Recently Listed Section
The property grid shown below the search, listing the newest properties.
@error('home_recently_listed_heading')
{{ $message }}
@enderror
@error('home_recently_listed_subheading')
{{ $message }}
@enderror
@error('home_recently_listed_description')
{{ $message }}
@enderror
Left blank by default — the section shows no description text at all until this is filled in.
Shop by Price Section
The budget tiles ("Under ₹25L", "₹1 Cr & up", ...).
@error('home_budget_heading')
{{ $message }}
@enderror
@error('home_budget_subheading')
{{ $message }}
@enderror
Explore Properties by City Section
The city chips (only shown once at least one city has listings).
@error('home_cities_heading')
{{ $message }}
@enderror
@error('home_cities_subheading')
{{ $message }}
@enderror
Testimonials Section
Only shown once at least one active testimonial exists.
@error('home_testimonials_heading')
{{ $message }}
@enderror
@error('home_testimonials_subheading')
{{ $message }}
@enderror
Footer SEO Content
Rendered immediately above the footer on every public page. Left blank by default — the whole section is hidden on the frontend until this is filled in.
@error('footer_seo_content')
{{ $message }}
@enderror
Plain text (no rich formatting) — line breaks are preserved when displayed on the frontend.
{{-- Its own independent
/route (admin.settings.company.stats.update, still owned by CompanySettingController — unchanged), deliberately separate from the form above so saving one never blanks the other's fields (same reasoning as Company Settings' own standalone forms). This card moved here from the Company Settings page so every piece of home page content can be managed from one place. --}}
Homepage Statistics
The 3-tile stats row shown on the public homepage, just below the search form.
@csrf @method('PATCH') @for ($n = 1; $n <= 3; $n++)
@error('stat_' . $n . '_value')
{{ $message }}
@enderror
@error('stat_' . $n . '_label')
{{ $message }}
@enderror
@endfor
@endsection