@extends('layouts.app') @section('content')

Beranda Penghuni

{{-- 🔥 ERROR VALIDATION --}} @if ($errors->any())
@endif @if($penghuni)
Data Anda

Nama: {{ $penghuni->nama }}

Email: {{ $penghuni->email }}

Status Huni: @if($penghuni->status_huni == 'Tetap') Tetap @else Kontrak @endif

@if($penghuni->status_huni == 'Kontrak')

Tanggal Keluar: {{ $penghuni->tanggal_keluar }}

@endif
@if($penghuni->rumah)
Rumah Anda

Blok {{ $penghuni->rumah->blok }} - No {{ $penghuni->rumah->no_rumah }}

Status: {{ $penghuni->rumah->status }}

@endif @else
Data penghuni belum tersedia
@endif @if(!$penghuni)
Lengkapi Data Penghuni
@csrf
{{-- 🔥 FIX: pakai d-none biar tetap terkirim --}}
@endif
@endsection @section('scripts') @endsection