Filament v4.13.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 v4.13.3 Released: Bug Fixes, MFA Improvements, and New Translations        On this page       1. [  Filament v4.13.3 Is Out — Here's What Changed ](#filament-v4133-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. [  How to Upgrade ](#how-to-upgrade)
6. [  Key Takeaways ](#key-takeaways)

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

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

 Filament v4.13.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 v4.13.3 Is Out — Here's What Changed  ](#filament-v4133-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   How to Upgrade  ](#how-to-upgrade)
6. [  06   Key Takeaways  ](#key-takeaways)

 Filament v4.13.3 Is Out — Here's What Changed
---------------------------------------------

Released on 20 September 2026 by [@danharrin](https://github.com/danharrin), Filament v4.13.3 is a focused patch release for the v4.x branch. It delivers twelve merged pull requests that address bugs across forms, tables, dropdowns, and the rich editor, while also expanding language support.

### Bug Fixes

#### MFA Password Checks

A security-relevant fix adds proper password verification to Multi-Factor Authentication (MFA) actions. Previously, certain MFA flows could proceed without re-confirming the user's password, which is now corrected.

```php
// MFA actions now enforce password confirmation before proceeding
// No code change required on your end — the fix is internal to Filament

```

#### Livewire `DataStore` Singleton Binding

Livewire's `DataStore` was not being bound as a singleton in the service container, which could cause inconsistent state across a request lifecycle. This is now resolved by binding it correctly.

#### FileUpload Audio Preview

Interactions with audio file previews inside the `FileUpload` component were broken. The fix restores expected play/pause and scrubbing behaviour for audio attachments.

#### Query Builder Filter Indicators

When a rule was deleted from the deferred filters form inside the Query Builder, the corresponding filter indicator badge was not being removed. 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 duplicate initialisation.

#### Mobile-Stacked Table Layouts

Mobile-stacked table layouts received improvements to how columns are rendered on small screens, resulting in a cleaner and more usable layout on mobile devices.

#### State Casts from Cached Child Schemas

State casts were not being resolved correctly when they originated from cached child schemas, leading to unexpected data transformations. This is now handled properly.

#### Temporary Test Paths

An issue with resolving temporary file paths during testing has been corrected, making test suites that involve file uploads more reliable.

#### Preserve `0` Values in Column Orders

Column order rendering was dropping `0` as a valid value, treating it as falsy. The fix ensures zero-indexed column orders are preserved correctly.

#### Rich Editor Mention Option Order

The order of mention options in the rich editor was not being preserved, causing suggestions to appear in an unpredictable sequence. The fix maintains the original insertion order.

### New and Updated Translations

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

### New Contributors

Welcome to two developers making their first contribution to Filament:

- **@ItsKaims** — Estonian translations
- **@kman86** — Dropdown `aria-controls` loop fix

### How to Upgrade

Update via Composer:

```bash
composer update filament/filament

```

No breaking changes are introduced in this patch release.

### Key Takeaways

- MFA actions now enforce password checks for improved security.
- Livewire `DataStore` is correctly bound as a singleton.
- FileUpload audio previews work as expected again.
- Query builder filter indicators are removed when rules are deleted.
- Mobile-stacked table layouts are improved.
- `0` column order values are no longer lost during rendering.
- Rich editor mention options preserve their defined order.
- Swedish and Estonian translations have been updated or completed.

---

Source: [Filament v4.13.3 on GitHub](https://github.com/filamentphp/filament/releases/tag/v4.13.3)

 Found this useful?

          [  ](https://twitter.com/intent/tweet?url=https%3A%2F%2Fmsaied.com%2Farticles%2Ffilament-v4133-released-bug-fixes-mfa-improvements-and-new-translations&text=Filament+v4.13.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-v4133-released-bug-fixes-mfa-improvements-and-new-translations) 

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

  3 questions  

     Q01  What security fix is included in Filament v4.13.3?        Filament v4.13.3 adds password verification to MFA (Multi-Factor Authentication) actions. Previously, certain MFA flows could proceed without re-confirming the user's password; this is now enforced internally by Filament. 

      Q02  Why was Livewire's DataStore binding fixed in this release?        The DataStore was not registered as a singleton in the service container, which could lead to inconsistent state within a single request lifecycle. Binding it as a singleton ensures a single shared instance is used throughout the request. 

      Q03  How do I update to Filament v4.13.3?        Run `composer update filament/filament` in your project. This 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) 

 [ ![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) [ ![MySQL EXPLAIN and Index Tuning for Laravel: Reading Query Plans in Production](https://cdn.msaied.com/682/ce36e9a53f64f4683147fdbc73e72caa.png) laravel mysql performance 

### MySQL EXPLAIN and Index Tuning for Laravel: Reading Query Plans in Production

Stop guessing why your Laravel queries are slow. Learn to read MySQL EXPLAIN output, spot full-table scans, an...

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

 20 Sep 2026     4 min read  

  Read    

 ](https://msaied.com/articles/mysql-explain-and-index-tuning-for-laravel-reading-query-plans-in-production) 

   [  ![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)
