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

Family Details

@if (Session::has('message'))
{{Session::get('message')}}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@php if(old('spouse_name')){ $spouse_name = old('spouse_name'); }elseif($editData){ $spouse_name = $editData->spouse_name; }else{ $spouse_name = null; } if(old('spouse_dob')){ $spouse_dob = old('spouse_dob'); }elseif($editData){ $spouse_dob = $editData->spouse_dob; }else{ $spouse_dob = null; } if(old('spouse_nid')){ $spouse_nid = old('spouse_nid'); }elseif($editData){ $spouse_nid = $editData->spouse_nid; }else{ $spouse_nid = null; } if(old('spouse_occupation')){ $spouse_occupation = old('spouse_occupation'); }elseif($editData){ $spouse_occupation = $editData->spouse_occupation; }else{ $spouse_occupation = null; } if(old('spouse_handicap')){ $spouse_handicap = old('spouse_handicap'); }else{ $spouse_handicap = $editData->spouse_handicap; } @endphp

Spouse Information

Children Information (Under 25)

@if(old('child_name')) @foreach(old('child_name') as $child_row)
@endforeach @elseif($editData->childrens && count($editData->childrens)>0) @foreach($editData->childrens as $child_row)
@endforeach @else
@endif
@endsection @section('before_body_end') @endsection