{{-- resources/views/admin/properties/edit.blade.php --}} @extends('layouts.app') @section('content')
@if($property->is_archived)

Edit Archived Property

Back to Properties List @else

Edit Active Property

Back to Properties List @endif @if(session('success'))
{{ session('success') }}
@endif
@csrf
{{-- English Title --}}
{{-- Japanese Title --}}
{{-- English Description --}}
{{-- Japanese Description --}}
{{-- Location --}}
@if($property->is_archived)

@lang('strings.removed') : {{ date('d F Y', strtotime($property->archived_date)); }}

@endif
{{-- Upload Images --}}
{{-- Existing Images Section --}}
@csrf
    @foreach($property->images as $image)
  • Property Image
  • @endforeach
@if($property->is_archived)
@else
@endif
@endsection @section('scripts') @endsection