@extends('Installation::installer.layouts.InstallerMaster') @section('template_title') {{ trans('Step 3 | Environment Settings') }} @endsection @section('title') {!! trans('Environment Settings') !!} @endsection @section('container') @if ($message = Session::get('success'))

{{ $message }}

@endif @if ($message = Session::get('info'))

{{ $message }}

@endif
@if (isset($errors) & $errors->any())
@foreach ($errors->all() as $item) {{$item}} @endforeach
@endif
@csrf
@if ($errors->has('app_url')) {{ $errors->first('app_url') }} @endif
@if ($errors->has('database_hostname')) {{ $errors->first('database_hostname') }} @endif
@if ($errors->has('database_port')) {{ $errors->first('database_port') }} @endif

@endsection @section('scripts') @endsection