Studnet 1 |
TEST |
123456789 |
|
10-10-2023 |
10-10-2023 |
guardiantest@example.com |
Guardian |
Test |
123456789 |
10-10-2023 |
|
@if(!empty($formFields))
@foreach ($formFields as $key => $data)
{{-- Text Field --}}
@if($data->type == 'text')
text |
{{-- Number Field --}}
@elseif($data->type == 'number')
number |
{{-- Dropdown Field --}}
@elseif($data->type == 'dropdown')
|
{{-- Radio Field --}}
@elseif($data->type == 'radio')
|
{{-- Checkbox Field --}}
@elseif($data->type == 'checkbox')
|
{{-- Textarea Field --}}
@elseif($data->type == 'textarea')
TEXTAREA |
@endif
@endforeach
@endif