@section('title') Modify Event Registration Form @endsection
@csrf @method('PUT')

Event Overview

Choose File Upload or Drag and Drop images here
(Support JPG/PNG format only, with Maximum size of 10MB per image)
0%
@if($event && $event->poster_file)

Existing Poster
@endif
(Support PDF format only, with Maximum size of 10MB per upload) @if($event && $event->brochure)
@endif
(Support PDF format only, with Maximum size of 10MB per upload)
@if($event && $event->agenda_file) @endif
@php $agendas = []; if (!empty($event->agenda)) { $agendas = json_decode($event->agenda, true) ?? []; } @endphp @if(count($agendas)) @foreach($agendas as $i => $agenda)
@if($i==0) @endif @if($i>0) @endif
@endforeach @else
@endif
@push('scripts') @endpush
https//

Event Contact Details

@php $selectedMediums = []; if (is_string($event->contact_event_posting_medium)) { $decoded = json_decode($event->contact_event_posting_medium, true); if (json_last_error() === JSON_ERROR_NONE && is_array($decoded)) { $selectedMediums = $decoded; } else { $selectedMediums = array_map('trim', explode(',', $event->contact_event_posting_medium)); } } elseif (is_array($event->contact_event_posting_medium)) { $selectedMediums = $event->contact_event_posting_medium; } else { $selectedMediums = []; } @endphp
@php $selectedtarget = []; if (is_string($event->contact_target_audience)) { $decoded = json_decode($event->contact_target_audience, true); if (json_last_error() === JSON_ERROR_NONE && is_array($decoded)) { $selectedtarget = $decoded; } else { $selectedtarget = array_map('trim', explode(',', $event->contact_target_audience)); } } elseif (is_array($event->contact_target_audience)) { $selectedtarget = $event->contact_target_audience; } @endphp

{{ $event->contact_payment_required == 1 ? 'Yes' : 'No' }}

Logistics

Venue Details

event_logistics->medium ?? '') == 'physical') ? 'checked' : '' }}>
event_logistics->medium ?? '') == 'virtual') ? 'checked' : '' }}>
event_logistics->medium ?? '') == 'hybrid') ? 'checked' : '' }}>
https//
https//
@push('scripts') @endpush
@if (session('success')) @endif