@extends('admin.layouts.app') @section('title', 'Edit About Page') @section('heading', 'About Page Editor') @section('content')
Home About Contact Offers Sliders
@csrf
{{-- Hero Section --}}

Hero section

Full-width banner at the top of the About page.

@if(!empty($s['about_hero_bg']))

Image: {{ basename($s['about_hero_bg']) }}

@else
No image set
@endif Supported: JPG, PNG, WebP, GIF, SVG, BMP (max 10MB)
{{-- Legacy Section --}}

Legacy section

The brand story paragraph.

{{-- Craft Cards Section --}}

Craftsmanship cards

Three feature cards in the grey section.

@foreach([1,2,3] as $n)
Card {{ $n }}
@if(!empty($s['about_craft'.$n.'_image']))

Image: {{ basename($s['about_craft'.$n.'_image']) }}

@else
No image
@endif
@endforeach
Preview page

Tips

  • Use ALL CAPS for hero text.
  • All images max 10MB.
  • Supported: JPG, PNG, WebP, GIF, SVG, BMP.
  • Story text: Max 2000 characters.
@endsection