@extends('layouts.frontend') @section('title', 'Setup Application') @section('header_title', 'Application Setup') @section('content') {{-- The layout 'layouts.frontend' now handles the centering and card styling --}} {{-- This div is the direct content within the layout's
card --}}

Step 2: Setup Database & Admin User

Your license for domain {{ session('activation_data.activated_domain', $domain ?? 'your domain') }} has been pre-validated.

{{-- Flash messages are now included from the layout --}} {{-- @include('layouts.partials.flash-messages') is in layouts.frontend --}} {{-- It will handle displaying errors/info if the page reloads after a failed submission attempt --}}
@csrf
Database Configuration
@error('db_host')

{{ $message }}

@enderror
@error('db_port')

{{ $message }}

@enderror

The name of the database you have already created for this application.

@error('db_database')

{{ $message }}

@enderror
@error('db_username')

{{ $message }}

@enderror
@error('db_password')

{{ $message }}

@enderror
Admin User Creation
@error('admin_name')

{{ $message }}

@enderror
@error('admin_email')

{{ $message }}

@enderror
@error('admin_password')

{{ $message }}

@enderror
@push('scripts') @endpush @endsection