@props(['fields' => [], 'values' => [], 'wireModel'])
@foreach ($fields as $field) @php $name = $field['name']; $type = $field['type']; $label = $field['label'] ?? ucfirst($name); @endphp
{{-- Text Field --}} @if ($type === 'text') @endif {{-- Image Field --}} @if ($type === 'image') @endif {{-- Textarea Field --}} @if ($type === 'textarea') @endif {{-- Repeater Field --}} @if ($type === 'repeater')
@endif
@endforeach