@foreach ($upload as $k_u => $u)
            @if (!empty($u['status']))
                
                    @if (str_contains($u['type'], 'upload'))
                        @php
                            $t = str_replace('upload_', '', $u['type']);
                        @endphp
                        
                    @elseif ($u['type'] == 'input')
                        @php
                            $label = $u['label'] ?? __('field.' . $k_u);
                        @endphp
                        
                    @elseif ($u['type'] == 'gallery')
                        @php
                            $gallery = $data->{$k_u} ?? null;
                        @endphp
                        
                    @endif
                
            @endif
        @endforeach