@extends('layouts.app') @section('title', 'Install Application') @section('content') @php $hasDbErrors = $errors->has('db_connection') || $errors->has('db_host') || $errors->has('db_port') || $errors->has('db_database') || $errors->has('db_username') || $errors->has('db_password'); $hasFinalStepErrors = $errors->has('admin_name') || $errors->has('admin_email') || $errors->has('admin_password') || $errors->has('install'); $initialStep = $hasFinalStepErrors ? 3 : ($hasDbErrors ? 2 : 1); @endphp

First Time Installation

Complete all steps to configure and install your website.

@csrf

Server Requirements

@foreach (($requirements['checks'] ?? []) as $check) @endforeach
{{ $check['label'] }} {{ $check['detail'] }} {{ $check['ok'] ? 'OK' : 'Fail' }}
@if (!($requirements['can_install'] ?? false))

Requirements failed. Fix failed checks before installation.

@endif
@endsection