@extends('layouts.main') @include('layouts.form-scripts') @section('title', $title) @section('content')
{{ $title }}
@csrf @if(!$isFormCreate) @method('PUT') @endif
@php $categoryOptions = collect($eventCategories)->mapWithKeys(function($c){ $label = $c->name ?? ('#'.$c->id); return [$c->id => $label]; })->toArray(); @endphp
@include('event.partials.agendas')
@include('event.partials.speakers')
@include('event.partials.sponsors')
@include('event.partials.packages')
@include('event.partials.tickets')
@include('event.partials.documentations')
@stack('partials') @endsection @push('scripts') @endpush