@extends('layouts.app') @section('content')
@php $isEditPenghuni = isset($penghuni) && $penghuni && isset($penghuni->id); $isEditRumah = isset($rumah) && is_object($rumah); @endphp {{-- JUDUL --}} @if($isEditPenghuni)

Edit Data Penghuni

@elseif($isEditRumah)

Edit Data Rumah

@endif {{-- ERROR --}} @if ($errors->any())
@endif {{-- FORM --}} @if($isEditPenghuni)
@elseif($isEditRumah) @endif @csrf @method('PUT') {{-- ========================= --}} {{-- PENGHUNI --}} {{-- ========================= --}} @if($isEditPenghuni) {{-- PILIH RUMAH --}} {{-- ========================= --}} {{-- RUMAH --}} {{-- ========================= --}} @elseif($isEditRumah) @csrf @method('PUT') {{-- 🔥 FOTO LAMA --}}

@if($rumah->foto) @else

Belum ada foto

@endif
{{-- 🔥 INPUT FOTO BARU --}}
{{-- 🔥 PREVIEW FOTO BARU --}}
Kembali
@endif
@endsection