@extends('layouts.admin') {{-- Use your admin layout --}} @section('page-title', isset($hero) ? 'Edit About-Hero-Section' : 'Add Hero Section') @section('content')

{{ isset($hero) ? 'Edit Hero Section' : 'Add Hero Section' }}

@if(session('success'))
{{ session('success') }}
@endif
@csrf @if(isset($hero)) @method('PUT') {{-- Update is POST in your controller --}} @endif
@if(isset($hero) && $hero->banner_img) Banner @endif
@if(isset($hero) && $hero->icon) Icon @endif
Back
@endsection