@extends('layouts.admin')
@section('title', 'Nuevo artículo')
@section('content')
Nuevo artículo
{{-- Errores globales --}}
@if ($errors->any())
Se encontraron errores al guardar:
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@php
// Si hay old('gallery_alts') por validación fallida,
// usamos esa cantidad de filas; si no, al menos 1
$oldGalleryAlts = old('gallery_alts', ['']);
@endphp
@endsection
@push('scripts')
@endpush