@extends('frontend.layouts.app') @section('content')
@include('frontend.become-member.membership-header')

Personal Information

@csrf
@php if(old('full_name')){ $full_name = old('full_name'); }elseif($editData){ $full_name = $editData->full_name; }else{ $full_name = null; } if(old('father_name')){ $father_name = old('father_name'); }elseif($editData){ $father_name = $editData->father_name; }else{ $father_name = null; } if(old('mother_name')){ $mother_name = old('mother_name'); }elseif($editData){ $mother_name = $editData->mother_name; }else{ $mother_name = null; } if(old('gender')){ $gender = old('gender'); }elseif($editData){ $gender = $editData->gender; }else{ $gender = null; } if(old('marital_status')){ $marital_status = old('marital_status'); }elseif($editData){ $marital_status = $editData->marital_status; }else{ $marital_status = null; } if(old('dob')){ $dob = old('dob'); }elseif($editData){ $dob = $editData->dob; }else{ $dob = null; } if(old('country_id')){ $country_id = old('country_id'); }elseif($editData){ $country_id = $editData->country_id; }else{ $country_id = null; } if(old('member_category_id')){ $member_category_id = old('member_category_id'); }elseif($editData){ $member_category_id = $editData->member_category_id; }else{ $member_category_id = null; } if(old('blood_group')){ $blood_group = old('blood_group'); }elseif($editData){ $blood_group = $editData->blood_group; }else{ $blood_group = null; } if(old('additional_info')){ $additional_info = old('additional_info'); }elseif($editData){ $additional_info = $editData->additional_info; }else{ $additional_info = null; } @endphp
@if($errors->has('password'))
{{$errors->first('password')}}
@endif Please keep blank if you don't want to change
@if($errors->has('full_name'))
{{$errors->first('full_name')}}
@endif
@if($errors->has('father_name'))
{{$errors->first('father_name')}}
@endif
@if($errors->has('mother_name'))
{{$errors->first('mother_name')}}
@endif
@if($errors->has('gender'))
{{$errors->first('gender')}}
@endif
@if($errors->has('marital_status'))
{{$errors->first('marital_status')}}
@endif
@if($errors->has('dob'))
{{$errors->first('dob')}}
@endif
@if($errors->has('country_id'))
{{$errors->first('country_id')}}
@endif
@if($errors->has('blood_group'))
{{$errors->first('blood_group')}}
@endif
@if($errors->has('additional_info'))
{{$errors->first('additional_info')}}
@endif
@endsection @section('page_script') @endsection