@extends('adminlte::page') @section('title', 'Editar Documento') @section('content_header')
@include('components.alerts')
@include('components.breadcrumbs', ['items' => ['Documentación' => 'documentos', 'Editar' => 'active']])

Editar: {{ $documento->nombre }}

@stop @section('content')
@csrf @method('PUT')
{{-- Nombre del documento --}}
@error('nombre') {{ $message }} @enderror
{{-- Categorías --}}
@error('categorias') {{ $message }} @enderror
{{-- Archivo actual y reemplazo --}}
@if(in_array(strtolower($documento->extension), ['jpg', 'jpeg', 'png', 'gif', 'webp', 'svg'])) @else @endif
{{ $documento->nombre }}.{{ $documento->extension }} {{ $documento->extension }} • {{ $documento->size < 1048576 ? number_format($documento->size / 1024, 0) . ' KB' : number_format($documento->size / 1048576, 2) . ' MB' }}
Deja este campo vacío si no deseas cambiar el archivo físico.
{{-- Información del sistema --}}
Última actualización {{ $documento->updated_at->format('d/m/Y H:i') }}
@stop @section('css') @stop @section('js') @stop