@extends('admin.layout') @section('title', 'Edit Ballroom') @section('content')

Edit Ballroom

Kembali
@csrf @method('PUT')
Informasi Dasar
@error('hotel_id')
{{ $message }}
@enderror
@error('name')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@error('capacity')
{{ $message }}
@enderror
@error('area_sqm')
{{ $message }}
@enderror
@error('base_price_per_hour')
{{ $message }}
@enderror
@error('maximum_capacity')
{{ $message }}
@enderror
@error('base_price_per_day')
{{ $message }}
@enderror
@error('price_per_pax')
{{ $message }}
@enderror
Pengaturan
is_active) ? 'checked' : '' }}>
Pilih beberapa gambar ballroom (kosongkan jika tidak ingin mengubah) @error('images')
{{ $message }}
@enderror
@if($ballroom->images && count($ballroom->images) > 0)
@foreach($ballroom->images as $index => $image) @php( $src = (is_string($image) && (str_starts_with($image, 'http://') || str_starts_with($image, 'https://'))) ? $image : (file_exists(public_path('storage/'.$image)) ? asset('storage/'.$image) : 'https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?w=800&q=80&auto=format&fit=crop') )
Gamballroom
@endforeach
@endif
Fasilitas
@if($ballroom->facilities && count($ballroom->facilities) > 0) @foreach($ballroom->facilities as $facility)
@endforeach @else
@endif
Batal
@push('scripts') @endpush @endsection