diff --git a/app/application/app/View/Components/Volt/Forms/Languages.php b/app/application/app/View/Components/Volt/Forms/Languages.php index f422d6f..d8b0cf3 100644 --- a/app/application/app/View/Components/Volt/Forms/Languages.php +++ b/app/application/app/View/Components/Volt/Forms/Languages.php @@ -19,7 +19,7 @@ protected function getName(): string private function getValue(): array { $value = old($this->getRequestName(), null); - if (\is_null($value)) { + if (\is_null($value) || !isset($value['items']) || !\is_array($value['items'])) { return $this->value; }