@php $_name = $attributes['name'] ?? ''; $_id = $attributes['id'] ?? $_name; $_type = $attributes['type'] ?? 'text'; $_placeholder = $attributes['placeholder'] ?? ''; $_label = $attributes['label']; $_old_value = old($_name); $_value = $attributes['value'] ?? ''; $_value = empty($_old_value) ? $_value : $_old_value; $_isrequired = isset($attributes['required']) ? 'required' : ''; $_title = $attributes['title'] ?? ''; @endphp