@props([ 'data' => [] ]) @php $title = $data['title'] ?? ""; $description = $data['description'] ?? ""; $customFormId = $data['custom_form_id'] ?? null; @endphp @if($customFormId)
@if($title || $description)
@if($title)

{{ $title }}

@endif @if($description)

{{ $description }}

@endif
@endif
@livewire('custom-form-widget', ['formId' => $customFormId])
@endif