@extends('admin.layouts.app') @section('title', 'Edit Section') @section('section')

Section Editor

@csrf
Section Title: @error('title') {{ $message }} @enderror
@if(isset($component->sub_title))
Section Subtitle:
@endif @if(isset($component->description))
Section Description: @error('description') {{ $message }} @enderror
@endif @if(isset($component->description2))
Section Description2:
@endif @if(isset($component->button_text))
Button Text:
@endif @forelse($component->pageComponentMedia as $media)
@if($media->file_type == 'image') @else @endif
@if($media->title != null)
Image/Video:
Image Title:
@else
Image/Video:
@endif
@empty @endforelse
@endsection