Livewire 3 component not rendering inside Laravel Jetstream (Livewire stack) layout

‘m building an admin panel using Laravel 11, Livewire 3, Jetstream (Livewire stack), and DaisyUI. I’ve created a Livewire component, registered the route, and tried to render it inside a Jetstream page—but nothing shows up. The page is blank and there are no error messages.

Created the component:

php artisan make:livewire Admin/Dashboard

Registered the route in routes/web.php:

use AppLivewireAdminDashboard;

Route::middleware(['auth:sanctum', 'verified'])->get('/admin', Dashboard::class);

Tried rendering the component in a Blade view:

<livewire:admin.dashboard />

Also tried:

@livewire('admin.dashboard')