{{ !empty($field['label']) ? $field['label'] : title_case(str_replace('_', ' ', snake_case($field['name']))) }}{{ !empty($field['required']) ? '*' : '' }}
@foreach ($field['options'] as $option)
{$field['name']} : null) ? 'selected' : '' }}>{{ $option['text'] }}
@endforeach
@if ($errors->has($field['name']))
{{ $errors->first($field['name']) }}
@endif