{{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::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'=>'form-control'])}} @if ($errors->has('brothers_count')) {{ $errors->first('brothers_count') }} @endif
{{Form::number('sisters_count', null,['id' => 'sisters_count','class'=>'form-control'])}} @if ($errors->has('sisters_count')) {{ $errors->first('sisters_count') }} @endif
{{Form::number('brothers_married_count', null,['id' => 'brothers_married_count','class'=>'form-control'])}} @if ($errors->has('brothers_married_count')) {{ $errors->first('brothers_married_count') }} @endif
{{Form::number('sisters_married_count', null,['id' => 'sisters_married_count','class'=>'form-control'])}} @if ($errors->has('sisters_married_count')) {{ $errors->first('sisters_married_count') }} @endif