Is it possible to add company name next to logo in panel?

I edited the logo and add text but it is blurred
Solution
$panel
->brandLogo(fn () => view('logo'))


<!-- logo.blade.php -->
<div class="flex">
    <img src="{{ asset('images/your-logo.png') }}" />
    <h2>{{ filament()->getBrandName() }}</h2>
</div>


If you are using new tailwind classes, you need to create a custom theme
https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme
Was this page helpful?