@extends('admin.layouts.app') @section('title', 'About Section') @section('content')
@csrf @method('PUT')
@error('years_experience')
{{ $message }}
@enderror
@include('admin.partials.image-field', ['name' => 'home_image', 'label' => 'Homepage Image', 'current' => $about->home_image])
@include('admin.partials.image-field', ['name' => 'about_page_image', 'label' => 'Main Image', 'current' => $about->about_page_image])
@include('admin.partials.image-field', ['name' => 'about_page_image_2', 'label' => 'Second Image (overlapping)', 'current' => $about->about_page_image_2])
@endsection