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

Secure one-time installation

Step {{ (int) ($installerStep ?? 0) }} — {{ match((int) ($installerStep ?? 0)) { 0 => 'Requirements', 1 => 'License activation', 2 => 'Database validation', 3 => 'Application setup', 4 => 'Demo content', 5 => 'Migration and administrator', 6 => 'Completion' } }}

Enter the SMR Softech license or purchase code first. The installation cannot continue until the license service returns a signed active response.

@if(($licenseStatus['status'] ?? '') === 'active')

License active for {{ $licenseStatus['domain'] ?? request()->getHost() }}.

@endif

Database credentials stay in the server environment and are never entered here. The installer validates the existing configuration, migrates the database and creates the first administrator.

Preflight

@foreach($checks as $check)
{{ $check['ok'] ? '✓' : '×' }} {{ $check['label'] }}
@endforeach @if($database)

Database connection: {{ $database['driver'] }} {{ $database['version'] }}

@else

{{ $databaseError }}

@endif

After success, remove SMR_WEB_INSTALL_TOKEN from .env and rebuild the configuration cache.

@endsection