@extends('installer::installation.layout') @section('content')

General Config

@csrf
@error('general')

{{ $message }}

@enderror

This is the URL where you are installing the application, for example, for subdomain in this field you need to enter "https://subdomain.example.com/".

@error('app_url')

{{ $message }}

@enderror
@error('app_name')

{{ $message }}

@enderror
@error('country')

{{ $message }}

@enderror

Database Configuration

@error('database_hostname')

{{ $message }}

@enderror

The default MySQL port is 3306, change the value only if you are certain that you are using different port.

@error('database_port')

{{ $message }}

@enderror

Make sure that you have created the database before configuring.

@error('database_name')

{{ $message }}

@enderror

Make sure you have set ALL privileges for the user.

@error('database_username')

{{ $message }}

@enderror

Enter the database user password.

@error('database_password')

{{ $message }}

@enderror
@if (session('database_error'))

Database connection error:
{{ session('database_error') }}

@endif
@endsection