@extends('themes.default1.installer.layout.installer') @section('license') done @stop @section('environment') done @stop @section('database') active @stop @section('content')

Database Setup

Below you should enter your database connection details. If you’re not sure about these, contact your host.

@if(Cache::has('fails'))
{!! Lang::get('lang.fails') !!}! {{Cache::get('fails')}}

@endif @if($errors->has('default') || $errors->has('host') || $errors->has('port') || $errors->has('databasename') || $errors->has('username') || $errors->has('password'))
{!! $errors->first('default', ':message
') !!} {!! $errors->first('host', ':message
') !!} {!! $errors->first('port', ':message
') !!} {!! $errors->first('databasename', ':message
') !!} {!! $errors->first('username', ':message
') !!} {!! $errors->first('password', ':message
') !!}
@endif {!! Form::open(['url'=> '/step4post', 'id' => 'databaseform']) !!}
{!! Form::text('host', null, ['required' => true]) !!}
{!! Form::text('port', null, ['onkeydown' => 'return CheckPortForInput(event)']) !!}
{!! Form::text('databasename', null, ['required' => true]) !!}
{!! Form::text('username', null, ['required' => true]) !!}

Previous


@stop