diff --git a/resources/views/components/ui/filelist.blade.php b/resources/views/components/ui/filelist.blade.php
index ae56058..2c474ec 100644
--- a/resources/views/components/ui/filelist.blade.php
+++ b/resources/views/components/ui/filelist.blade.php
@@ -5,6 +5,10 @@
$onchange = $attributes->get('onchange');
$value = old($name, $value);
$editor = filter_var($editor, FILTER_VALIDATE_BOOLEAN);
+
+ if($name === '') {
+ $name = \Illuminate\Support\Str::random(8);
+ }
@endphp
@if($value !== '' || $editor === true)
diff --git a/resources/views/post/show.blade.php b/resources/views/post/show.blade.php
index ba79f25..ab1f89a 100644
--- a/resources/views/post/show.blade.php
+++ b/resources/views/post/show.blade.php
@@ -11,6 +11,6 @@
{!! $post->content !!}
-
+