@include('include.preloader') @include('include.header')
{{-- ENCABEZADO --}}

Editar El Contenido

{{-- ÉXITOS / ERRORES --}} @if (session('success')) @endif @if ($errors->any())
Revisa los campos:
    @foreach ($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif {{-- FORMULARIO ÚNICO: MISIÓN + VISIÓN --}}
@csrf @method('PUT') {{-- MISIÓN --}}
MISIÓN
@error('mision_descripcion')
{{ $message }}
@enderror
{{-- VISIÓN --}}
VISIÓN
@error('vision_descripcion')
{{ $message }}
@enderror
{{-- VALORES --}}
VALORES
@forelse ($valores as $valor) @empty @endforelse
# Título Descripción Iconos Acciones
{{ $valor->id }} {{ $valor->nombre }} {{ $valor->descripcion }}
Sin valores registrados.
{{-- MODAL: NUEVO VALOR --}} {{-- MODAL: EDITAR VALOR --}} {{-- MODAL: ELIMINAR VALOR --}}
@include('include.footer')