@extends('installer::layouts.master') @section('template_title') {{ trans('installer::installer_messages.environment.wizard.templateTitle') }} @endsection @section('title') {!! trans('installer::installer_messages.environment.wizard.title') !!} @endsection @section('content') @php $entry_key = 'installer::installer_messages.environment.wizard.form.'; @endphp

系统参数配置

{{--
@if ($errors->has('app_url')) {{ $errors->first('app_url') }} @endif
--}} {{--
@if ($errors->has('database_connection')) {{ $errors->first('database_connection') }} @endif
--}} {{--
@if ($errors->has('database_hostname')) {{ $errors->first('database_hostname') }} @endif
--}} {{--
@if ($errors->has('database_port')) {{ $errors->first('database_port') }} @endif
--}} {{--
@if ($errors->has('database_name')) {{ $errors->first('database_name') }} @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_driver')) {{ $errors->first('mail_driver') }} @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