@extends('layouts.main') @section('title', $title) @section('content')
{{ $title }}
@csrf @if(!$isFormCreate) @method('PUT') @endif
@php $eventOptions = collect($events)->pluck('title','id')->toArray(); @endphp
@php $ticketOptions = collect($tickets)->pluck('name','id')->toArray(); @endphp
@php $sponsorRegOptions = collect($sponsorRegistrations ?? [])->pluck('company_name','id')->toArray(); @endphp
@php $types = ['individual'=>'Individual', 'sponsor_delegate'=>'Sponsor Delegate']; @endphp
@php $payments = ['pending'=>'Pending', 'paid'=>'Paid', 'cancelled'=>'Cancelled']; @endphp
@endsection @push('scripts') @endpush