@extends('adminlte::page') @section('title', 'Añadir Alojamiento') @section('css') @stop @section('content_header')
@include('components.breadcrumbs', ['items' => ['Alojamientos' => 'alojamientos', 'Crear' => 'active']])

Nuevo Alojamiento

@stop @section('content')
@include('components.alerts') {{-- Asumo que tienes un componente para errores/éxito --}}
@csrf {{-- Campo oculto para wp_id (se llenará solo en sincronizaciones, pero lo dejamos previsto) --}}
{{-- TAB 1: GENERAL --}}
@if(auth()->user()->isAdmin())
@endif
{{-- TAB 2: UBICACIÓN Y CONTACTO --}}
{{-- TAB 3: SERVICIOS Y REDES --}}
{{-- TAB 4: MULTIMEDIA --}}
{{-- Imagen Principal -> Se guardará como ResourceFile tipo 'image' --}}
{{-- Galería -> Se guardarán múltiples ResourceFile tipo 'gallery' --}}
@include('components.descripcion_galeria')
@stop @section('js') @stop