@extends('admin.layouts.admin_app') @include('admin.include.form-styles') @section('dashboard_content') Article New Article Cancel Save @if ($articulo->exists) @method('PATCH') @endif @csrf General Information Title: {{ $errors->has('title') ? $errors->first('title') : null }} Language: Spanish English Author: {{ $errors->has('autor') ? $errors->first('autor') : null }} Category: {{ $errors->has('category') ? $errors->first('category') : null }} Available categories (click to add): @include('admin.articulo.categories-tags') Description: {!! old('description') ?? $articulo->descripcion !!} {{ $errors->has('description') ? $errors->first('description') : null }} Note: To use the banner section you will need to set the id [[banner]] in the content data Title banner: {{ $errors->has('title_banner') ? $errors->first('title_banner') : null }} Background-color banner: {{ $errors->has('color_banner') ? $errors->first('color_banner') : null }} Content: {!! old('content') ?? $articulo->contenido !!} {{ $errors->has('content') ? $errors->first('content') : null }} Tags: {{ $errors->has('tags') ? $errors->first('tags') : null }} Images and attachments Imagen: {{ $errors->has('img') ? str_replace('img', 'img', $errors->first('img')) : 'Medidas: 2340x792 pixeles, 512kb Max (PNG, JPEG)' }} Thumbnail: {{ $errors->has('thumbnail') ? str_replace('thumbnail', 'thumbnail', $errors->first('thumbnail')) : 'Medidas: 740x426 pixeles, 256kb Max (PNG, JPEG)' }} Note: To use the download banner section you will need to set the id [[download-banner]] in the content data PDF: {{ $errors->has('pdf') ? str_replace('pdf', 'pdf', $errors->first('pdf')) : '5mb Max (PDF)' }} Download form title: {{ $errors->has('title_downloadable') ? $errors->first('title_downloadable') : null }} Download form description: {{ $errors->has('description_downloadable') ? $errors->first('description_downloadable') : null }} PDF Display: pdf_display) === 'descarga' ? 'selected' : '' }} value="descarga">Just download pdf_display) === 'visible' ? 'selected' : '' }} value="visible">Show PDF pdf_display) === 'ambos' ? 'selected' : '' }} value="ambos">Show and download Form Id: {{ $errors->has('formId') ? $errors->first('formId') : null }} @endsection @push('scripts') @endpush