Resimde görülen alanı kaldırmaya çalışıyorum ama başaramadım, anlayan biri el atabilir mi

Sarı ile işaretli olan alanı kaldırmaya çalışıyorum, kod şu şekilde;
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<div id="setup-menu-wrapper" class="sidebar animated <?php if ($this->session->has_userdata('setup-menu-open')
&& $this->session->userdata('setup-menu-open') == true) {
echo 'display-block';
} ?>">
<ul class="nav metis-menu" id="setup-menu">
<li class="tw-mt-[64px] sm:tw-mt-0">
<a class="close-customizer tw-cursor-pointer"><i class="fa fa-close"></i></a>
<span class="text-left bold customizer-heading"><?php echo _l('setting_bar_heading'); ?></span>
</li>
<?php
$totalSetupMenuItems = 0;
foreach ($setup_menu as $key => $item) {
if (isset($item['collapse']) && count($item['children']) === 0) {
continue;
}
$totalSetupMenuItems++; ?>
<li class="menu-item-<?php echo e($item['slug']); ?>">
<a href="<?php echo count($item['children']) > 0 ? '#' : $item['href']; ?>" aria-expanded="false">
<i class="<?php echo e($item['icon']); ?> menu-icon"></i>
<span class="menu-text">
<?php echo e(_l($item['name'], '', false)); ?>
</span>
<?php if (count($item['children']) > 0) { ?>
<span class="fa arrow"></span>
<?php } ?>
<?php if (isset($item['badge'], $item['badge']['value']) && !empty($item['badge'])) {?>
<spanBilgilendirme; children menü içerisinde yer almıyor, bir çok şeyi denedim sadece isim kaldırma kısmını "Yönetim Paneli" yazan kısmı kaldırabildim ama arkasında yine boşluk bıraktı alt resimde olduğu gibi. Onu da şu şekilde hallettim; 22. satırı
<?php echo e($item['name'], '', false); ?>böyle yaptım.
