@extends('layouts.app') @section('content')
{{-- JUDUL DINAMIS --}} @if(isset($penghuni) && $penghuni && isset($penghuni->id))

Edit Data Penghuni

@else

Edit Data Rumah

@endif {{-- ERROR VALIDASI --}} @if ($errors->any())
@endif {{-- INFO RUMAH SAAT INI --}} @if(isset($penghuni) && $penghuni && $penghuni->rumah)
Rumah saat ini: Blok {{ $penghuni->rumah->blok }} - No {{ $penghuni->rumah->no_rumah }}
@endif {{-- FORM DINAMIS --}} @if(isset($penghuni) && $penghuni && isset($penghuni->id))
@elseif(isset($rumah) && is_object($rumah)) @endif @csrf @method('PUT') {{-- ========================= --}} {{-- FORM PENGHUNI --}} {{-- ========================= --}} @if(isset($penghuni) && $penghuni && isset($penghuni->id))
{{-- PILIH RUMAH --}}
@else {{-- ========================= --}} {{-- FORM RUMAH --}} {{-- ========================= --}}
@endif {{-- BUTTON --}} Kembali
{{-- SCRIPT --}} @endsection