Hi, I am pretty new to livewire and got stuck with this problem/error. I followed the steps provided on the official website (https://laravel-livewire.com/docs/2.x/quickstart).
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
@vite('resources/css/app.css')
@livewireStyles
</head>
<body>
@livewire('seminar-show', ['id' => $id])
@livewireScripts
</body>
</html>