Filament v5.8.3: Bug Fixes &amp; New Translations | Mohamed Said        [  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MH.png)   Mohamed Said Laravel Backend Engineer  ](https://msaied.com) [ Home ](https://msaied.com) [ Projects ](https://msaied.com/projects) [ Articles  ](https://msaied.com/articles) [ Certificates ](https://msaied.com/certificates) [ Contact ](https://msaied.com#contact-section) 

       [  ](https://github.com/EG-Mohamed)       

 [ Home ](https://msaied.com) [ Projects ](https://msaied.com/projects) [ Articles ](https://msaied.com/articles) [ Certificates ](https://msaied.com/certificates) [ Contact ](https://msaied.com#contact-section) 

  [ home ](https://msaied.com)    [ articles ](https://msaied.com/articles)    Filament v5.8.3 Released: Bug Fixes, MFA Improvements, and New Translations        On this page       1. [  Filament v5.8.3 Is Out — Here's What Changed ](#filament-v583-is-out-heres-what-changed)
2. [  Bug Fixes ](#bug-fixes)
3. [  New and Updated Translations ](#new-and-updated-translations)
4. [  New Contributors ](#new-contributors)
5. [  Key Takeaways ](#key-takeaways)
6. [  How to Upgrade ](#how-to-upgrade)

  ![Filament v5.8.3 Released: Bug Fixes, MFA Improvements, and New Translations](https://cdn.msaied.com/686/d3b71a4945fdbbb48cfac7ccb98e7f0b.png)

 [  Filament ](https://msaied.com/articles?category=filament) [  Livewire ](https://msaied.com/articles?category=livewire)  #filament   #laravel   #livewire   #bug-fix   #release   #php  

 Filament v5.8.3 Released: Bug Fixes, MFA Improvements, and New Translations 
=============================================================================

     20 Sep 2026      3 min read    ![Mohamed Said](https://cdn.msaied.com/01M22N44A70A5MC2S599JP0MPH.webp)  Mohamed Said  

       Table of contents

1. [  01   Filament v5.8.3 Is Out — Here's What Changed  ](#filament-v583-is-out-heres-what-changed)
2. [  02   Bug Fixes  ](#bug-fixes)
3. [  03   New and Updated Translations  ](#new-and-updated-translations)
4. [  04   New Contributors  ](#new-contributors)
5. [  05   Key Takeaways  ](#key-takeaways)
6. [  06   How to Upgrade  ](#how-to-upgrade)

 Filament v5.8.3 Is Out — Here's What Changed
--------------------------------------------

Released on 20 September 2026 by [danharrin](https://github.com/danharrin), Filament v5.8.3 is a focused patch release for the 5.x branch. It bundles a solid set of bug fixes, accessibility improvements, and community-contributed translations. If you are running Filament 5.x in production, this update is worth applying promptly.

### Bug Fixes

#### MFA Password Checks

A missing password verification step in multi-factor authentication (MFA) actions has been corrected. Previously, certain MFA flows could be triggered without re-confirming the user's password, which is a security-relevant gap. The fix ensures password checks are enforced consistently across all MFA actions.

#### Livewire `DataStore` Singleton Binding

Livewire's `DataStore` was not being bound as a singleton in the service container, which could lead to unexpected state inconsistencies across a request lifecycle. The fix registers it correctly so the same instance is reused throughout.

```php
// The underlying fix ensures DataStore is resolved once per request,
// preventing duplicate state when multiple Livewire components share data.

```

#### FileUpload Audio Preview Interactions

Interaction bugs in the `FileUpload` component's audio preview mode have been resolved. Users uploading audio files will now see correct playback controls and interaction behaviour.

#### Query Builder Filter Indicators

When a rule was deleted from the deferred filters form inside the query builder, the corresponding filter indicator was not being removed from the UI. This visual inconsistency is now fixed.

#### Dropdown `aria-controls` Loop

A Dropdown component initialised twice on the same DOM element would enter an infinite `aria-controls` loop, causing accessibility and rendering issues. The fix prevents the loop from occurring when a component is re-initialised.

#### Mobile-Stacked Table Layouts

Mobile rendering of stacked table layouts has been improved. Column stacking on small screens was producing layout irregularities that are now corrected.

#### State Casts from Cached Child Schemas

Resolving state casts from cached child schemas was failing in certain scenarios. The fix ensures casts are correctly resolved regardless of schema caching state.

#### Temporary Test Paths and Column Order `0` Values

Two additional fixes land in this release: temporary file paths used during testing are now resolved correctly, and a bug that caused `0` values to be dropped when rendering column orders has been patched.

#### Rich Editor Mention Option Order (Backported from 4.x)

The order of mention options in the rich editor is now preserved correctly. This fix was backported from the 4.x branch.

### New and Updated Translations

- **Swedish** translations updated by [@tanthammar](https://github.com/tanthammar)
- **Estonian** translations added by first-time contributor [@ItsKaims](https://github.com/ItsKaims)

### New Contributors

Welcome to [@ItsKaims](https://github.com/ItsKaims) and [@kman86](https://github.com/kman86), both making their first contributions to the Filament project in this release.

### Key Takeaways

- **Security**: MFA actions now enforce password checks — update if you use MFA.
- **Livewire stability**: `DataStore` singleton fix prevents subtle state bugs in complex pages.
- **Accessibility**: The `aria-controls` loop fix improves screen-reader compatibility.
- **Mobile UX**: Stacked table layouts render correctly on small screens.
- **i18n**: Swedish and Estonian locales are now more complete.
- **Testing**: Temporary path resolution is reliable in test environments.

### How to Upgrade

Run the following Composer command to pull in the latest patch:

```bash
composer update filament/filament

```

No breaking changes are introduced in this patch release.

---

*Source: [Filament v5.8.3 on GitHub](https://github.com/filamentphp/filament/releases/tag/v5.8.3)*

 Found this useful?

          [  ](https://twitter.com/intent/tweet?url=https%3A%2F%2Fmsaied.com%2Farticles%2Ffilament-v583-released-bug-fixes-mfa-improvements-and-new-translations&text=Filament+v5.8.3+Released%3A+Bug+Fixes%2C+MFA+Improvements%2C+and+New+Translations) [  ](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fmsaied.com%2Farticles%2Ffilament-v583-released-bug-fixes-mfa-improvements-and-new-translations) 

 Frequently Asked Questions 
----------------------------

  3 questions  

     Q01  What security issue does Filament v5.8.3 address?        v5.8.3 adds missing password checks to MFA actions, ensuring that multi-factor authentication flows require the user to confirm their password before proceeding. 

      Q02  Why is the Livewire DataStore singleton fix important?        Without the singleton binding, a new DataStore instance could be created multiple times within a single request, leading to inconsistent state when multiple Livewire components share data on the same page. 

      Q03  How do I upgrade to Filament v5.8.3?        Run `composer update filament/filament` in your project root. v5.8.3 is a patch release with no breaking changes, so no additional migration steps are required. 

  Continue reading

 More Articles 
---------------

 [ View all    ](https://msaied.com/articles) 

 [ ![Filament v4.13.3 Released: Bug Fixes, MFA Improvements, and New Translations](https://cdn.msaied.com/685/d166e49051b110828607993a8719536e.png) filament laravel php 

### Filament v4.13.3 Released: Bug Fixes, MFA Improvements, and New Translations

Filament v4.13.3 ships with a dozen targeted fixes covering MFA password checks, FileUpload audio previews, qu...

  ![Mohamed Said](https://cdn.msaied.com/01M22N44A70A5MC2S599JP0MPH.webp)  Mohamed Said 

 20 Sep 2026     3 min read  

  Read    

 ](https://msaied.com/articles/filament-v4133-released-bug-fixes-mfa-improvements-and-new-translations) [ ![Laravel Reverb in Production: Scaling WebSockets, Auth Channels, and Presence at Load](https://cdn.msaied.com/684/1c8fcd52449a6596e09ec043b245955f.png) laravel websockets reverb 

### Laravel Reverb in Production: Scaling WebSockets, Auth Channels, and Presence at Load

Reverb ships as Laravel's first-party WebSocket server. This guide covers production deployment, horizontal sc...

  ![Mohamed Said](https://cdn.msaied.com/01M22N44A70A5MC2S599JP0MPH.webp)  Mohamed Said 

 20 Sep 2026     4 min read  

  Read    

 ](https://msaied.com/articles/laravel-reverb-in-production-scaling-websockets-auth-channels-and-presence-at-load) [ ![Filament v4 Render Hooks: Injecting UI Into Any Panel Layer Without Hacks](https://cdn.msaied.com/683/e6350724743c14481d11da6bd38e44e2.png) filament laravel filament-v4 

### Filament v4 Render Hooks: Injecting UI Into Any Panel Layer Without Hacks

Render hooks let you inject Blade or Livewire content into specific Filament panel slots without overriding co...

  ![Mohamed Said](https://cdn.msaied.com/01M22N44A70A5MC2S599JP0MPH.webp)  Mohamed Said 

 20 Sep 2026     3 min read  

  Read    

 ](https://msaied.com/articles/filament-v4-render-hooks-injecting-ui-into-any-panel-layer-without-hacks) 

   [  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MH.png)   Mohamed Said Laravel Backend Engineer  ](https://msaied.com)Senior Backend Engineer specializing in Laravel, scalable SaaS platforms, APIs, and cloud infrastructure. I build secure, high-performance web applications that help businesses grow.

Explore

- [Home](https://msaied.com)
- [Projects](https://msaied.com/projects)
- [Articles](https://msaied.com/articles)
- [Certificates](https://msaied.com/certificates)
- [Contact](https://msaied.com#contact-section)

Connect

- [   hello@msaied.com ](mailto:hello@msaied.com)
- [   +20 109 461 9204 ](tel:+201094619204)

© 2026 Mohamed Said. All rights reserved.

 [  ](https://github.com/EG-Mohamed) [  ](https://www.linkedin.com/in/msaiedm/) [  ](https://wa.me/201094619204) [  ](mailto:hello@msaied.com) [  ](https://drive.google.com/file/u/0/d/1MF20IPRJyzfy32mhEutjL5EpSls0w2Q8/view)
