@extends('installer.layout') @section('title')初始化配置@endsection @section('content') @if ( session('message') ) @endif
{{ csrf_field() }}

初始化配置

@if($errors->has('database_host'))

{{ $errors->first('database_host') }}

@endif
@if($errors->has('database_port'))

{{ $errors->first('database_port') }}

@endif
@if($errors->has('database_username'))

{{ $errors->first('database_username') }}

@endif
@if($errors->has('database_password'))

{{ $errors->first('database_password') }}

@endif
@if($errors->has('database_name'))

{{ $errors->first('database_name') }}

@endif
@if($errors->has('database_prefix'))

{{ $errors->first('database_prefix') }}

@endif
@endsection @section('script') @endsection