@extends('admin.layout') @section('title', 'Hero Section') @section('page-title', 'Hero Section') @section('content')
@if($hero)

Current Hero Content

Edit
Live Preview

{{ $hero->company_name }}

{{ $hero->tagline }}

{{ $hero->description }}

{{ $hero->primary_btn_text }} {{ $hero->secondary_btn_text }}

Primary Button

{{ $hero->primary_btn_text }}

{{ $hero->primary_btn_link }}

Secondary Button

{{ $hero->secondary_btn_text }}

{{ $hero->secondary_btn_link }}

Video URL

{{ $hero->video_url ?: 'Not set' }}

Background

{{ $hero->background_image ? 'Custom Image' : 'Gradient' }}

@else @include('admin.partials.empty-state', ['icon' => 'fas fa-home', 'title' => 'No Hero Content', 'description' => 'Set up your hero section.', 'actionRoute' => route('admin.hero.create'), 'actionText' => 'Create Hero Section']) @endif
@endsection