{{Form::select('marital_status_id',$maritalStatusArr, $maritalStatusId,['id' => 'marital_status_id','class'=>'form-control'])}}
@if ($errors->has('marital_status_id'))
{{ $errors->first('marital_status_id') }}
@endif
{{Form::select('height', $heightArr,$height,['id' => 'height',
'class'=>$errors->has('height') ? 'form-control select2 is-invalid required' : 'form-control required'])}}
@if ($errors->has('height'))
{{ $errors->first('height') }}
@endif
{{Form::number('weight', null,['id' => 'weight',
'class'=>$errors->has('weight') ? 'form-control is-invalid ' : 'form-control ',
'placeholder'=>'Weight in KG'])}}
@if ($errors->has('weight'))
{{ $errors->first('weight') }}
@endif
{{Form::select('skin_complexion_id',$skinComplexionArr,$skinComplexionId,['id' => 'skin_complexion_id','class'=>'form-control'])}}
@if ($errors->has('skin_complexion_id'))
{{ $errors->first('skin_complexion_id') }}
@endif
{{Form::select('physical_status_id',$physicalStatusArr,$physicalStatusId,['id' => 'physical_status_id','class'=>'form-control'])}}
@if ($errors->has('physical_status_id'))
{{ $errors->first('physical_status_id') }}
@endif
@if( isset($member) && !empty(url('/'.$member->photo_url)))
@endif
@if(empty($memberId))
@endif
Image (JPG, PNG) Kindly do not upload selfies.
@if ($errors->has('photo_url'))
{{ $errors->first('photo_url') }}
@endif
@if(empty($memberId))
Image (JPG, PNG) Kindly do not upload selfies.
@if ($errors->has('additional_photo_urls'))
{{ $errors->first('additional_photo_urls') }}
@endif
@endif
{{Form::text('father_name', null,['id' => 'father_name',
'class'=>$errors->has('father_name') ? 'form-control is-invalid' : 'form-control',
'placeholder'=>''])}}
{{Form::select('father_occupation',$parentsOccupation,$fatherOccupationId,['id' => 'father_occupation','class'=>'form-control'])}}
@if ($errors->has('father_occupation'))
{{ $errors->first('father_occupation') }}
@endif
{{Form::text('mother_name', null,['id' => 'mother_name',
'class'=>$errors->has('mother_name') ? 'form-control is-invalid' : 'form-control',
'placeholder'=>''])}}
{{Form::select('mother_occupation',$mothersOccupation,$motherOccupationId,['id' => 'mother_occupation','class'=>'form-control'])}}
@if ($errors->has('mother_occupation'))
{{ $errors->first('mother_occupation') }}
@endif
{{Form::textarea('about', null,['id' => 'about',
'class'=>$errors->has('about') ? 'form-control is-invalid ' : 'form-control ',
'placeholder'=>"Few words about you .."])}}
{{Form::select('family_value_id',$familyValueArr,$familyValueId,['id' => 'family_value_id','class'=>'form-control'])}}
@if ($errors->has('family_value_id'))
{{ $errors->first('family_value_id') }}
@endif
{{Form::select('family_status_id',$familyStatusArr,$familyStatusId,['id' => 'family_status_id','class'=>'form-control'])}}
@if ($errors->has('family_status_id'))
{{ $errors->first('family_status_id') }}
@endif
{{Form::number('brothers_count', null,['id' => 'brothers_count',
'class'=>$errors->has('brothers_count') ? 'form-control is-invalid ' : 'form-control ',
'min' => 0
])}}
{{Form::number('sisters_count', null,['id' => 'sisters_count',
'class'=>$errors->has('sisters_count') ? 'form-control is-invalid ' : 'form-control ',
'min' => 0
])}}
{{Form::number('brothers_married_count', null,['id' => 'brothers_married_count',
'class'=>$errors->has('brothers_married_count') ? 'form-control is-invalid ' : 'form-control ',
'min' => 0
])}}
{{Form::number('sisters_married_count', null,['id' => 'sisters_married_count',
'class'=>$errors->has('sisters_married_count') ? 'form-control is-invalid ' : 'form-control ',
'min' => 0
])}}
{{Form::select('highest_education_id',$highestEducationArr,$highestEducationId,['id' => 'highest_education_id','class'=>'form-control'])}}
@if ($errors->has('highest_education_id'))
{{ $errors->first('highest_education_id') }}
@endif
{{Form::text('additional_education', null,['id' => 'additional_education',
'class'=>$errors->has('additional_education') ? 'form-control is-invalid ' : 'form-control '])}}
@if ($errors->has('additional_education'))
{{ $errors->first('additional_education') }}
@endif
{{Form::select('employment_type_id',$employmentTypeArr,$employmentTypeId,['id' => 'employment_type_id','class'=>'form-control'])}}
@if ($errors->has('employment_type_id'))
{{ $errors->first('employment_type_id') }}
@endif
{{Form::select('designation_id',$designationArr,NULL,['id' => 'designation_id','class'=>'form-control'])}}
@if ($errors->has('designation_id'))
{{ $errors->first('designation_id') }}
@endif
{{Form::select('salary_id',$salaryArr,$salaryId,['id' => 'salary_id','class'=>'form-control'])}}
{{Form::textarea('work_address', null,['id' => 'work_address',
'class'=>$errors->has('work_address') ? 'form-control is-invalid ' : 'form-control ',
'placeholder'=>'Address'])}}
{{--
--}}
{{Form::radio('eating_habits', 'Vegitarian', true, ['id'=>'vegitarians'])}}
{{Form::radio('eating_habits', 'Non-veg', false, ['id'=>'nonvegs'])}}
{{Form::radio('eating_habits', 'Eggetarian', false, ['id'=>'eggs'])}}
{{--
--}}
{{--
--}}
{{Form::radio('drinking_habits', 'Never drinks', true, ['id'=>'never_drinkss'])}}
{{Form::radio('drinking_habits', 'Drinks socially', false, ['id'=>'drinks_sociallys'])}}
{{Form::radio('drinking_habits', 'Drinks regularly', false, ['id'=>'drinks_regularlys'])}}
{{--
--}}
{{--
--}}
{{Form::radio('smoking_habits', 'Never smokes', true, ['id'=>'never_smokess'])}}
{{Form::radio('smoking_habits', 'Smokes occasionally', false, ['id'=>'smokes_occasionallys'])}}
{{Form::radio('smoking_habits', 'Smokes regularly', false, ['id'=>'smokes_regularlys'])}}
{{--
--}}
{{--
--}}
{{Form::radio('dosham', 'Yes', true, ['id'=>'yess'])}}
{{Form::radio('dosham', 'No', false, ['id'=>'nos'])}}
{{--
--}}
{{Form::text('star', null,['id' => 'star',
'class'=>$errors->has('star') ? 'form-control is-invalid' : 'form-control',
'placeholder'=>''])}}