@extends('website.layouts.app') @section('content')
Personal Details
@csrf
@error('sex')
{{ $message }}
@enderror
@error('father_name')
{{ $message }}
@enderror
@error('husband_name')
{{ $message }}
@enderror
@error('date_of_birth')
{{ $message }}
@enderror
@error('caste_tribe')
{{ $message }}
@enderror
@error('occupation')
{{ $message }}
@enderror
@error('annual_income')
{{ $message }}
@enderror
@error('residental_address')
{{ $message }}
@enderror
@foreach ($propertyTypes as $propertyType)
@foreach ($propertyAttributes as $propertyAttribute)
{{-- {{ dd($propertyDetails) }} --}} @php $propertyDetailKey = "property_{$propertyType->id}_{$propertyAttribute->id}"; $existingValue = isset($propertyDetails[$propertyDetailKey]) ? $propertyDetails[$propertyDetailKey] : null; @endphp
@endforeach
@endforeach
 
Cancel
@endsection