@extends('admin.master') @section('content')

Edit Hero Section

Update hero section information and images

@csrf @method('PUT')
@error('title')

{{ $message }}

@enderror
@error('subtitle')

{{ $message }}

@enderror

Select multiple images to add more phone images.

@error('phone_images')

{{ $message }}

@enderror @error('phone_images.*')

{{ $message }}

@enderror @php $phoneImages = is_array($heroSection->phone_images) ? $heroSection->phone_images : []; @endphp @if(count($phoneImages) > 0)

Current Phone Images

@foreach($phoneImages as $image)
phone image
@endforeach

Delete করতে image select করে Update button চাপুন।

@else

No phone images uploaded.

@endif
@if($heroSection->badge_image) badge image @endif @error('badge_image')

{{ $message }}

@enderror
is_active) ? 'checked' : '' }} class="h-4 w-4 text-black border-gray-300 rounded">
Back
@endsection