@extends('layouts.install') @section('title', 'Install - Step 1') @section('content')
@if(session('error'))
{{session('error')}}
@endif

{{ __('Database information') }}

{{ __('Enter your database information.') }}

@csrf
@error('database_name') {{ $message }} @enderror
@error('database_user_name') {{ $message }} @enderror
@error('database_password') {{ $message }} @enderror
@error('database_host_name') {{ $message }} @enderror
@stop