@extends('install.install-layout') @section('content')
@include('install.navigation')
@include('errors.errors')
{!! Form::open(array('route' => ['install.project'], '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-minlength' => '4', 'id' => 'host_name', )) }}
{{ Form::text('database_name', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Database Name', 'ng-model'=>'database_name', 'required'=> 'true', 'ng-minlength' => '1', )) }}
{{ Form::text('user_name', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Database Username', 'ng-model'=>'user_name', 'required'=> 'true', 'ng-minlength' => '1', 'id' => 'user_name', )) }}
{{ Form::password('password', $attributes = array('class'=>'form-control', 'placeholder' => 'Database Password', 'ng-model'=>'password', 'id' => 'password', )) }}
{{ Form::text('port_number', '3306' , $attributes = array('class'=>'form-control', 'placeholder' => 'Port Number', 'ng-model'=>'port_number', 'required'=> 'true', 'ng-minlength' => '1', )) }}
Instructions  
{!! Form::close() !!} @stop @section('footer_scripts') @stop