@if (isset($input['id'])) id="{{ $input['id'] }}" @endif @if (!empty($title))
{{ $title }}
@endif @if (!empty($description))
{{ $description }}
@endif @if (!empty($options))
@endif @if (!empty($inputs))
@foreach ($inputs as $input) @if ($input['type'] === 'text')
@elseif ($input['type'] === 'radio')
@foreach ($input['options'] as $option)
@endforeach
@elseif ($input['type'] === 'toggle')
@endif @endforeach
@endif