@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
Complete all steps to configure and install your website.