@extends('layouts.dashboard')
@section('title', 'Edit Profile - HimRishtey')
@section('styles')
@endsection
@php
$birthDate = $member->birth_date_time
? \Carbon\Carbon::parse($member->birth_date_time)
: null;
$sectionStatus = fn (string $section): bool => $sectionCompletion[$section] ?? false;
@endphp
@section('content')
You have unsaved changes in this section.
@endsection
@section('scripts')
@endsection