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

Menorah Academia System User Details

Please enter Admin/Owner details for this system

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

This field is required

Text is too short

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

This field is required

Text is too short

{{ Form::email('owner_email', '' , $attributes = array('class'=>'form-control', 'placeholder' => 'Owner Email', 'ng-model'=>'owner_email', 'required'=> 'true', 'ng-class'=>'{"has-error": registrationForm.owner_email.$touched && registrationForm.owner_email.$invalid}', 'ng-minlength' => '1', )) }}

This field is required

Text is too short

{{ Form::password('owner_password', $attributes = array('class'=>'form-control', 'placeholder' => 'Owner Password', 'ng-model'=>'owner_password', )) }}
{!! Form::close() !!}
@stop @section('footer_scripts') @include('common.validations'); @stop