Forms - v1.0.0-beta1
Livewire Components Overview
Pre-built Livewire components for form management and display.
Component Topics
- Components Overview - Introduction to components
- FormBuilder - Drag-and-drop form builder
- FormRenderer - Form display component
- FormsList - Form listing component
- SubmissionsList - Submission listing
- SubmissionDetail - Submission detail view
- NotificationEditor - Notification configuration
Quick Reference
Admin Components
{{-- Form management --}}
<livewire:forms::forms-list />
<livewire:forms::form-builder :form="$form" />
{{-- Submission management --}}
<livewire:forms::submissions-list :form="$form" />
<livewire:forms::submission-detail :submission="$submission" />
{{-- Notification editor --}}
<livewire:forms::notification-editor :form="$form" />
Public Components
{{-- Display form --}}
<livewire:forms::form-renderer slug="contact" />
For detailed component documentation, see Components Overview.