@php
$fields = [['class' => 'w-full xl:w-1/2', 'id' => 'fname', 'type' => 'text', 'title' => __('field.fname'), 'placeholder' => __('field.fname_placeholder')], ['class' => 'w-full xl:w-1/2', 'id' => 'lname', 'type' => 'text', 'title' => __('field.lname'), 'placeholder' => __('field.lname_placeholder')], ['class' => 'w-full', 'id' => 'email', 'type' => 'email', 'title' => __('field.email'), 'placeholder' => __('field.email_placeholder')], ['class' => 'w-full', 'class_input' => 'tel-number', 'id' => 'tel', 'type' => 'text', 'title' => __('field.tel'), 'placeholder' => __('field.tel_placeholder')], ['class' => 'w-full', 'id' => 'subject_id', 'type' => 'select', 'title' => __('field.subject'), 'placeholder' => __('field.subject_placeholder')]];
@endphp
@foreach ($fields as $field)
@if ($field['type'] === 'select')
@else
@endif
@endforeach