@extends('installer.layout') @section('title', 'Database') @section('subtitle', 'Configure your database connection') @section('content')

Database Configuration

Enter your database connection details below. The installer will verify the connection before proceeding.

@csrf
@if($errors->has('db_host'))
{{ $errors->first('db_host') }}
@endif
@if($errors->has('db_port'))
{{ $errors->first('db_port') }}
@endif
@if($errors->has('db_database'))
{{ $errors->first('db_database') }}
@endif
@if($errors->has('db_username'))
{{ $errors->first('db_username') }}
@endif
@if($errors->has('db_password'))
{{ $errors->first('db_password') }}
@endif

If the database does not exist, we'll attempt to create it for you. Make sure the database user has sufficient privileges.

@endsection @section('footer') Back
@endsection