@csrf
@php $colorThemes = $invitation->template->themes->filter(function ($theme) { return $theme->type == 'colors'; }); $fontThemes = $invitation->template->themes->filter(function ($theme) { return $theme->type == 'fonts'; }); @endphp
@include('invitation.event-data-form')
@if($colorThemes->count() > 0)
@include('invitation.theme-form')
@endif @if($fontThemes->count() > 0)
@include('invitation.theme-fonts-form')
@endif @foreach ($sections as $section)
@include('invitation.'.str_replace('_', '-', $section['code'].'-form'))
@endforeach
@script @endscript