@extends('installer.layout')
@section('content')
{{ __('install.title_step_3') }}
@if($errors->has('db_connection'))
{{ $errors->first('db_connection') }}
@endif
@if(session('env_content') || ($env_content ?? null))
@include('installer._env-fallback', ['envContent' => session('env_content') ?: $env_content])
@endif
@endsection