wip
This commit is contained in:
parent
68bbdfe59d
commit
e5cb71adbc
|
|
@ -101,6 +101,7 @@ return [
|
|||
'install' => 'Install',
|
||||
'ajax_database_parameters' => 'Check database parameters...',
|
||||
'ajax_database_success' => 'Database connection succeeded',
|
||||
'error_email' => 'Please fill in the correct email address',
|
||||
],
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -87,6 +87,7 @@ return [
|
|||
'install' => '安装',
|
||||
'ajax_database_parameters' => '检测数据库参数...',
|
||||
'ajax_database_success' => '数据库连接成功',
|
||||
'error_email' => '请填写正确的邮箱地址',
|
||||
],
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -110,9 +110,9 @@
|
|||
{{ trans($entry_key . 'admin_email') }}
|
||||
</label>
|
||||
<input class="form-control {{ $errors->has('admin_email') ? 'is-invalid' : '' }}" name="admin_email"
|
||||
value="{{ old('admin_email', 'admin') }}" required placeholder="{{ trans($entry_key . 'admin_email') }}">
|
||||
value="{{ old('admin_email', 'root@example.com') }}" type="email" required placeholder="{{ trans($entry_key . 'admin_email') }}">
|
||||
<span class="invalid-feedback"
|
||||
role="alert">{{ $errors->has('admin_email') ? $errors->first('admin_email') : __('common.error_required', ['name' => trans($entry_key . 'admin_email')]) }}</span>
|
||||
role="alert">{{ $errors->has('admin_email') ? $errors->first('admin_email') : __('installer::installer_messages.environment.error_email') }}</span>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
|
|
|
|||
Loading…
Reference in New Issue