@error('owner_id')
{{ $message }}
@enderror
@error('sourcing_channel_id')
{{ $message }}
@enderror
@if(auth()->user()->isAdmin())
@else
@php
$statusBadgeMap = [
'published' => 'bg-success bg-opacity-10 text-success',
'under_review' => 'bg-warning bg-opacity-10 text-warning',
'unavailable' => 'bg-secondary bg-opacity-10 text-secondary',
];
$statusBadgeCls = $statusBadgeMap[$property->status] ?? 'bg-secondary bg-opacity-10 text-secondary';
@endphp
{{ ucwords(str_replace('_', ' ', $property->status)) }}
@endif