@extends('layouts.installer') @section('content')

Configure Database

@csrf
@if ($errors->any()) @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('admin_email'))
{{ $errors->first('admin_email') }}
@endif
Don't use spaces. @if ($errors->has('admin_username'))
{{ $errors->first('admin_username') }}
@endif
@if ($errors->has('admin_password'))
{{ $errors->first('admin_password') }}
@endif
@endsection