diff --git a/resources/beike/admin/views/pages/plugins/form.blade.php b/resources/beike/admin/views/pages/plugins/form.blade.php
index f266e423..ede85a95 100644
--- a/resources/beike/admin/views/pages/plugins/form.blade.php
+++ b/resources/beike/admin/views/pages/plugins/form.blade.php
@@ -21,7 +21,7 @@
:title="$column['label']"
:class="$errors->has($column['name']) ? 'is-invalid' : ''"
:required="$column['required'] ? true : false"
- :value="old($column['value'], $column['value'] ?? '')">
+ :value="old($column['name'], $column['value'] ?? '')">
@if (isset($column['description']))
{{ $column['description'] }}
@endif
@@ -35,7 +35,7 @@
@if (isset($column['description']))
{{ $column['description'] }}
@@ -47,7 +47,7 @@
+ :value="old($column['name'], $column['value'] ?? '')">
@if (isset($column['description']))
{{ $column['description'] }}
@endif
@@ -60,7 +60,7 @@
:title="$column['label']"
:required="$column['required'] ? true : false"
:html="isset($column['html']) ? true : false"
- :value="old($column['value'], $column['value'] ?? '')">
+ :value="old($column['name'], $column['value'] ?? '')">
@if (isset($column['description']))
{{ $column['description'] }}
@endif