@extends('adminlte::page') @section('title', 'Editar Espacio Natural') @section('css') @stop @section('content_header')
@include('components.alerts')
@include('components.breadcrumbs', ['items' => ['Espacios Naturales' => 'espacios-naturales', 'Editar' => 'active']])

Editar: {!! $espacio->name !!}

@stop @section('content')
@csrf @method('PUT')
{{-- TAB 1: GENERAL --}}
accesibilidad ? 'checked' : '' }}>
{{-- TAB 2: UBICACIÓN --}}
{{-- TAB 3: CLASIFICACIÓN --}}
{{-- TAB 4: MULTIMEDIA --}}
{{-- Imagen Destacada --}}
@php $imgPrincipal = $espacio->archivos()->where('file_type', 'image')->first(); @endphp @if($imgPrincipal)
@endif
{{-- PDF Accesibilidad --}} {{-- Galería Actual --}}
@include('components.descripcion_galeria')
@foreach($espacio->archivos()->where('file_type', 'gallery')->get() as $foto)
@endforeach
@stop @section('js') @stop