@extends('adminlte::page') @section('title', 'Editar Evento') @section('css') @stop @section('content_header')
@include('components.alerts')
@include('components.breadcrumbs', ['items' => ['Eventos' => 'events', 'Editar' => 'active']])

Editar: {{ $evento->name }}

@stop @section('content')
@csrf @method('PUT')
{{-- TAB 1: GENERAL --}}
@if(auth()->user()->isAdmin())
@endif
@php $imgPrincipal = $evento->archivos()->where('file_type', 'image')->first(); @endphp @if($imgPrincipal)
@endif
{{-- TAB 2: FECHAS Y HORARIOS --}}
{{-- TAB 3: LOCALIZACIÓN Y ORGANIZADORES --}}
{{-- TAB 4: NEOCOM --}}
@stop @section('js') @stop