{!! Form::label('reg_date', 'Date', ['class' => 'col-sm-1 control-label']) !!}
{!! Form::text('reg_date', null, ["data-date-format" => "yyyy-mm-dd", "class" => "form-control date-picker border-form input-mask-date","readonly"]) !!} @include('includes.form_fields_validation_message', ['name' => 'reg_date'])
@if (!isset($data['row']))
{{--
@include('includes.form_fields_validation_message', ['name' => 'semester'])
--}} @else
{!! Form::select('faculty', $data['faculties'], null, ['class' => 'form-control',"disabled"]) !!} @include('includes.form_fields_validation_message', ['name' => 'faculty'])
{!! Form::select('semester', $data['semester'], null, ['class' => 'form-control',"disabled"]) !!} @include('includes.form_fields_validation_message', ['name' => 'semester'])
@endif
{!! Form::label('first_name', 'NAME OF STUDENT', ['class' => 'col-sm-3 control-label',]) !!}
{!! Form::text('first_name', null, ["class" => "form-control border-form upper","required"]) !!} @include('includes.form_fields_validation_message', ['name' => 'first_name'])
{!! Form::text('middle_name', null, ["class" => "form-control border-form upper"]) !!} @include('includes.form_fields_validation_message', ['name' => 'middle_name'])
{!! Form::text('last_name', null, ["class" => "form-control border-form upper","required"]) !!} @include('includes.form_fields_validation_message', ['name' => 'last_name'])
{!! Form::label('date_of_birth', 'Date of Birth', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('date_of_birth', null, ["data-date-format" => "yyyy-mm-dd", "class" => "form-control border-form date-picker input-mask-date","required"]) !!} @include('includes.form_fields_validation_message', ['name' => 'date_of_birth'])
{!! Form::label('gender', 'Gender', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('gender', ['' => '','MALE' => 'MALE', 'FEMALE' => 'FEMALE', 'OTHER' => 'OTHER'], null, ['class'=>'form-control border-form',"required"]); !!} @include('includes.form_fields_validation_message', ['name' => 'gender'])
{!! Form::label('mobile_1', 'Mobile 1', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('mobile_1', null, ["class" => "form-control border-form input-mask-mobile","required"]) !!} @include('includes.form_fields_validation_message', ['name' => 'mobile_1'])
{!! Form::label('email', 'E-mail', ['class' => 'col-sm-1 control-label']) !!}
{!! Form::text('email', null, ["class" => "form-control border-form" ,"required"]) !!} @include('includes.form_fields_validation_message', ['name' => 'email'])
{!! Form::label('password', 'Password', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::password('password', ["placeholder" => "", "class" => "form-control border-form", "required"]) !!} @include('includes.form_fields_validation_message', ['name' => 'password'])
{!! Form::label('confirmPassword', 'Confirm Password', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::password('confirmPassword', ["placeholder" => "", "class" => "form-control border-form"/*,"onkeyup"=>"passCheck()"*/, "required"]) !!} @include('includes.form_fields_validation_message', ['name' => 'confirmPassword'])