@extends('admin.layouts.base') @section('content')

Homepage Hero Section

Add New Hero
@if(session('success'))
{{ session('success') }}
@endif
@forelse ($heroes as $key => $hero) @empty @endforelse
# Title Subtitle Button Text Button Link Image Actions
{{ $key + 1 }} {{ $hero->title }} {{ $hero->subtitle }} {{ $hero->button_text }} {{ $hero->button_link }} @if($hero->image) @else No Image @endif Edit
@csrf @method('DELETE')
No Hero Sections Found
@endsection