@extends('install.install-layout') @section('content')
@include('errors.errors') {!! Form::open(array('url' => URL_INSTALL_SYSTEM, 'method' => 'POST', 'name'=>'registrationForm ', 'novalidate'=>'', 'class'=>"loginform", 'id'=>"install_form")) !!}

Server Hosting Details

Please enter server login details to install this system

{{ Form::text('host_name', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Host Name', 'ng-model'=>'host_name', 'required'=> 'true', 'ng-class'=>'{"has-error": registrationForm.host_name.$touched && registrationForm.host_name.$invalid}', 'ng-minlength' => '4', )) }}

This field is required

Text is too short

{{ Form::text('database_name', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Database Name', 'ng-model'=>'database_name', 'required'=> 'true', 'ng-class'=>'{"has-error": registrationForm.database_name.$touched && registrationForm.database_name.$invalid}', 'ng-minlength' => '1', )) }}

This field is required

Text is too short

{{ Form::text('user_name', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Database Username', 'ng-model'=>'user_name', 'required'=> 'true', 'ng-class'=>'{"has-error": registrationForm.user_name.$touched && registrationForm.user_name.$invalid}', 'ng-minlength' => '1', )) }}

This field is required

Text is too short

{{ Form::password('password', $attributes = array('class'=>'form-control', 'placeholder' => 'Database Password', 'ng-model'=>'password', )) }}
{{ Form::text('port_number', '3306' , $attributes = array('class'=>'form-control', 'placeholder' => 'Port Number', 'ng-model'=>'port_number', 'required'=> 'true', 'ng-class'=>'{"has-error": registrationForm.port_number.$touched && registrationForm.port_number.$invalid}', 'ng-minlength' => '1', )) }}

This field is required

Text is too short

This field is required

{!! Form::close() !!}
@stop @section('footer_scripts') @include('common.validations'); @stop