@extends('layouts.app') @section('title', 'Hotel Settings') @section('page-title', 'Hotel Settings') @section('content')
@csrf
Basic Information
Branding & Receipt
@if($hotel->logo)
Logo Current logo
@endif
@if($hotel->favicon)
Current favicon uploaded
@endif
Receipt Footer Message
This appears at the bottom of every receipt.
Your Plan
@php $subscription = $hotel->activeSubscription; $plan = $subscription->plan ?? null; @endphp @if($plan)

{{ $plan->name }}

Features:

  • Staff: {{ $plan->max_staff == 999 ? 'Unlimited' : $plan->max_staff }}
  • Commission: {{ $plan->commission_rate }}%
  • Reports: {{ $plan->report_days == 9999 ? 'Unlimited' : $plan->report_days }} days
@else

No active subscription. Subscribe now

@endif
Need Help?

Contact support: support@hotelmanagementboard.com

Or upgrade your plan for priority support.

📱 Booking Widget

Embed this code on your website to accept online bookings:

<script src="{{ url('/widget/' . $hotel->slug . '/script.js') }}"></script>

Paste this code anywhere on your website where you want the booking form to appear.

@push('scripts') @endpush @endsection