@extends('install.layouts.master') @section('title', translate('install_database')) @section('container') {!! Form::open(array('url' => url('install/database'), 'method' => 'post', 'name' => 'form',"enctype"=>"multipart/form-data")) !!}
{!! Form::label('host',translate('install_host'),array('class'=>'')) !!} {!! Form::text('host', null, array('class' => 'form-control','required'=>'required')) !!}
{!! Form::label('username',translate('install_username'),array('class'=>'')) !!} {!! Form::text('username', null, array('class' => 'form-control','required'=>'required')) !!}
{!! Form::label('password',translate('install_password'),array('class'=>'')) !!} {!! Form::text('password', null, array('class' => 'form-control')) !!}
{!! Form::label('name',translate('install_name'),array('class'=>'')) !!} {!! Form::text('name', null, array('class' => 'form-control','required'=>'required')) !!}
{!! Form::label('port',translate('install_port'),array('class'=>'')) !!} {!! Form::text('port', 3306, array('class' => 'form-control','required'=>'required')) !!}
{!! Form::close() !!} @endsection