@if(Config::get('edufirmconfig.student.registration.tabs.general_info.grand_father') == 1)
{{ __('form_fields.student.section_label.parent_info')}}
{{ __('form_fields.student.section_label.grand_father')}}
@endif
@if(Config::get('edufirmconfig.student.registration.tabs.general_info.father') == 1)
{{ __('form_fields.student.section_label.father')}}
@endif
@if(Config::get('edufirmconfig.student.registration.tabs.general_info.mother') == 1)
{{ __('form_fields.student.section_label.mother')}}
@endif
@if(Config::get('edufirmconfig.student.registration.tabs.general_info.guardian') == 1)
{{ __('form_fields.student.section_label.guardian')}}
{!! Form::radio('guardian_is', 'father_as_guardian', false, ['class' => 'ace', "onclick"=>"FatherAsGuardian(this.form)"]) !!}
Father is Guardian
{!! Form::radio('guardian_is', 'mother_as_guardian', false, ['class' => 'ace',"onclick"=>"MotherAsGuardian(this.form)"]) !!}
Mother is Guardian
{!! Form::radio('guardian_is', 'self_guardian', true, ['class' => 'ace', "onclick"=>"SelfGuardian(this.form)"]) !!}
Self
{!! Form::radio('guardian_is', 'other_guardian', true, ['class' => 'ace', "onclick"=>"OtherGuardian(this.form)"]) !!}
Other's
{!! Form::radio('guardian_is', 'link_guardian', false, ['class' => 'ace', "onclick"=>"linkGuardian(this.form)"]) !!}
Link Guardian
@endif