Hotels

@if (session('error'))
Error! {{ session('error') }}
@endif
@csrf
  {{ old('name', $hotel->name ?? '') }}
  {{ old('address', $hotel->address ?? '') }}
   {{ $city ?? '' }}, ({{ $state ?? '' }}, {{ $country ?? '' }})
  {{ old('latitude', $hotel->latitude ?? '') }}
  {{ old('longitude', $hotel->longitude ?? '') }}
  {{ old('email', $hotel->email ?? '') }}
  {{ old('phone', $hotel->phone ?? '') }}
  {{ old('website', $hotel->website ?? '') }}
   @if($hotel->youtube_link) {{$hotel->youtube_link}} @else {{ '' }} @endif
  {{ old('check_in', $hotel->check_in ?? '') }}
  {{ old('check_out', $hotel->check_out ?? '') }}
  {{ old('property_type', $propertyTypes->settings_value ?? '') }}
  {{ old('star_rating', $hotel_ratings->settings_value ?? '') }}
   {{ old('cancellation_policy', $hotel->cancellation_policy ?? '') == 1 ? 'Free Cancellation' : (old('cancellation_policy', $hotel->cancellation_policy ?? '') == 0 ? 'Non Refundable' : '') }}
   {{ $mealTypeNames }}
   {{ old('hotel_group', $hotel_groups->settings_value ?? '') }}
   {{ old('summary', $hotel->summary ?? '') }}
   {{ old('description', $displayContent['description'] ?? '') }}
   {{ old('property_rule', $displayContent['propertyRule'] ?? '') }}
   {{ old('terms_conditions', $displayContent['termsCondition'] ?? '') }}
   {{ $amenityList }}
   {{ $attractionList }}
   {{ $activityNames }}
   @if($hotel->status == 1) Published @elseif($hotel->status == 0) Unpublished @elseif($hotel->status == 2) Draft @endif