@if ($errors->has('banner_description'))
{{ $errors->first('banner_description') }}
@endif
Banner Image
(Recommended size: 1920 × 780 pixels, Max file size: 500KB)
@if ($errors->has('banner_image'))
{{ $errors->first('banner_image') }}
@endif
Content Details
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
Budget Section
@if ($errors->has('budget_widgets_content'))
{{ $errors->first('budget_widgets_content') }}
@endif
FAQS
@if ($errors->has('faqs_description'))
{{ $errors->first('faqs_description') }}
@endif
@php
$faqs = json_decode($page->faqs, true) ?? [];
$totalFaqs = count($faqs);
@endphp
@for ($i = 0; $i < 20; $i++)
@php
$question = $faqs[$i]['question'] ?? '';
$answer = $faqs[$i]['answer'] ?? '';
$shouldShow = ($i == 0) || !empty($question);
@endphp
@endfor
Seo Friendly Fields
@if ($errors->has('page_url'))
{{ $errors->first('page_url') }}
@endif
@error('url_type')
{{ $message }}
@enderror
@if ($errors->has('browser_title'))
{{ $errors->first('browser_title') }}
@endif
@if ($errors->has('meta_keywords'))
{{ $errors->first('meta_keywords') }}
@endif
@if ($errors->has('meta_description'))
{{ $errors->first('meta_description') }}
@endif
@if ($errors->has('script'))
{{ $errors->first('script') }}
@endif