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

Laraoffice System User Details

Please enter Owner details for this system

{{ Form::text('first_name', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'First Name', 'ng-model'=>'system_name', 'required'=> 'true', 'ng-class'=>'{"has-error": registrationForm.system_name.$touched && registrationForm.system_name.$invalid}', 'ng-minlength' => '1', )) }}
{{ Form::text('last_name', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Last name', 'ng-model'=>'system_user_name', 'required'=> 'true', 'ng-class'=>'{"has-error": registrationForm.system_user_name.$touched && registrationForm.system_user_name.$invalid}', 'ng-minlength' => '1', )) }}
{{ Form::email('owner_email', '' , $attributes = array('class'=>'form-control', 'placeholder' => 'Email address', 'ng-model'=>'owner_email', 'required'=> 'true', 'ng-class'=>'{"has-error": registrationForm.owner_email.$touched && registrationForm.owner_email.$invalid}', 'ng-minlength' => '1', )) }}
{{ Form::password('owner_password', $attributes = array('class'=>'form-control', 'placeholder' => 'Password', 'ng-model'=>'owner_password', )) }}
If you have already user details to login, click here.
{!! Form::close() !!}
@stop @section('footer_scripts') @stop