+
系统参数配置
-
-
-
- @if ($errors->has('app_url'))
-
-
- {{ $errors->first('app_url') }}
-
- @endif
-
+
+ {{--
+
+
+ @if ($errors->has('database_username'))
+
+
+ {{ $errors->first('database_username') }}
+
+ @endif
+
--}}
+
+ {{--
+
+
+ @if ($errors->has('database_password'))
+
+
+ {{ $errors->first('database_password') }}
+
+ @endif
+
--}}
+
+ {{--
--}}
+ {{--
+
+
+ @if ($errors->has('mail_host'))
+
+
+ {{ $errors->first('mail_host') }}
+
+ @endif
+
--}}
+ {{--
+
+
+ @if ($errors->has('mail_port'))
+
+
+ {{ $errors->first('mail_port') }}
+
+ @endif
+
--}}
+ {{--
+
+
+ @if ($errors->has('mail_username'))
+
+
+ {{ $errors->first('mail_username') }}
+
+ @endif
+
--}}
+ {{--
+
+
+ @if ($errors->has('mail_password'))
+
+
+ {{ $errors->first('mail_password') }}
+
+ @endif
+
--}}
+ {{--
+
+
+ @if ($errors->has('mail_encryption'))
+
+
+ {{ $errors->first('mail_encryption') }}
+
+ @endif
+
--}}
+
+
+
+
+
+ {{ $errors->has('app_url') ? $errors->first('app_url') : __('common.error_required', ['name' => trans($entry_key . 'app_url_label')]) }}
+
+
+
+
+
+
+
+
+
+ {{ $errors->has('database_hostname') ? $errors->first('database_hostname') : __('common.error_required', ['name' => trans($entry_key . 'db_host_label')]) }}
+
+
+
+
+
+
+ {{ $errors->has('database_port') ? $errors->first('database_port') : __('common.error_required', ['name' => trans($entry_key . 'db_port_label')]) }}
+
+
+
+
+
+ {{ $errors->has('database_name') ? $errors->first('database_name') : __('common.error_required', ['name' => trans($entry_key . 'db_name_label')]) }}
+
+
+
+
+
+ {{ $errors->has('database_username') ? $errors->first('database_username') : __('common.error_required', ['name' => trans($entry_key . 'db_username_label')]) }}
+
+
+
+
+
+ {{ $errors->has('database_password') ? $errors->first('database_password') : __('common.error_required', ['name' => trans($entry_key . 'db_password_label')]) }}
+
+
+
+
+
+
+ {{ $errors->has('mail_driver') ? $errors->first('mail_driver') : __('common.error_required', ['name' => trans($entry_key . 'app_tabs.mail_driver_label')]) }}
+
+
+
+
+
+
+ {{ $errors->has('mail_host') ? $errors->first('mail_host') : __('common.error_required', ['name' => trans($entry_key . 'app_tabs.mail_host_label')]) }}
+
+
+
+
+
+ {{ $errors->has('mail_port') ? $errors->first('mail_port') : __('common.error_required', ['name' => trans($entry_key . 'app_tabs.mail_port_label')]) }}
+
+
+
+
+
+ {{ $errors->has('mail_username') ? $errors->first('mail_username') : __('common.error_required', ['name' => trans($entry_key . 'app_tabs.mail_username_label')]) }}
+
+
+
+
+
+ {{ $errors->has('mail_password') ? $errors->first('mail_password') : __('common.error_required', ['name' => trans($entry_key . 'app_tabs.mail_password_label')]) }}
+
+
+
+
+
+ {{ $errors->has('mail_encryption') ? $errors->first('mail_encryption') : __('common.error_required', ['name' => trans($entry_key . 'app_tabs.mail_encryption_label')]) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@endsection
@section('scripts')
@endsection
diff --git a/beike/Installer/Views/layouts/master.blade.php b/beike/Installer/Views/layouts/master.blade.php
index 2cc23090..41cf9662 100644
--- a/beike/Installer/Views/layouts/master.blade.php
+++ b/beike/Installer/Views/layouts/master.blade.php
@@ -49,14 +49,14 @@