@php
    $other = $config['form']['navbar']['other']['input'];
    $k_last = array_key_last($other);
@endphp
    @foreach ($other as $k_o => $o)
        @if (!empty($o['status']))
            
                @php
                    $chk_req = !empty($o['validate']);
                @endphp
                @if ($o['type'] == 'multiple')
                    @php
                        $selected = $data->{$k_o} ?? null;
                    @endphp
                    
                @elseif ($o['type'] == 'input')
                    
                @endif
            
        @endif
    @endforeach