From 5a808133ef2aa54410344a121ab2fb246a4be576 Mon Sep 17 00:00:00 2001 From: pushuo <229102104@qq.com> Date: Tue, 6 Sep 2022 16:43:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=20=E5=AE=89=E8=A3=85=20envir?= =?UTF-8?q?onment=20=E5=89=8D=E7=AB=AF=E4=BA=A4=E4=BA=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Views/environment-wizard.blade.php | 157 +++++++++++++----- 1 file changed, 118 insertions(+), 39 deletions(-) diff --git a/beike/Installer/Views/environment-wizard.blade.php b/beike/Installer/Views/environment-wizard.blade.php index 94fbd873..4efd0fe2 100644 --- a/beike/Installer/Views/environment-wizard.blade.php +++ b/beike/Installer/Views/environment-wizard.blade.php @@ -10,20 +10,29 @@ @endsection @section('content') -@php + @php $entry_key = 'installer::installer_messages.environment.'; -@endphp + @endphp

{{ __('installer::installer_messages.environment.title') }}

-
+ @@ -69,8 +80,9 @@ - + {{ $errors->has('database_username') ? $errors->first('database_username') : __('common.error_required', ['name' => trans($entry_key . 'db_username_label')]) }}
@@ -79,39 +91,41 @@ - + {{ $errors->has('database_password') ? $errors->first('database_password') : __('common.error_required', ['name' => trans($entry_key . 'db_password_label')]) }}
-
+
+ +
+
{{ __('installer::installer_messages.environment.admin_info') }}

-
+ value="{{ old('admin_email', 'admin') }}" required placeholder="{{ trans($entry_key . 'admin_email') }}"> {{ $errors->has('admin_email') ? $errors->first('admin_email') : __('common.error_required', ['name' => trans($entry_key . 'admin_email')]) }}
-
- + {{ $errors->has('admin_password') ? $errors->first('admin_password') : __('common.error_required', ['name' => trans($entry_key . 'admin_password')]) }}
-
- - -
@@ -130,25 +141,93 @@ @section('scripts') @endsection