@extends('admin.layouts.admin_app') @include('admin.include.form-styles') @section('dashboard_content') Blog Nueva publicación Cancelar Guardar @if($blog->exists) @method('PATCH') @endif @csrf Información general Título: {{ $errors->has('title') ? $errors->first('title') : null }} Idioma: Español Inglés Author: {{ $errors->has('autor') ? $errors->first('autor') : null }} Descripción: {!! old('description') ?? $blog->descripcion !!} {{ $errors->has('description') ? $errors->first('description') : null }} Contenido: {!! old('content') ?? $blog->contenido !!} {{ $errors->has('content') ? $errors->first('content') : null }} Imágenes Imagen: {{ $errors->has('img') ? str_replace('img', 'img', $errors->first('img')) : 'Medidas: 126x60 256kb Max, (PNG, JPEG)' }} Thumbnail: {{ $errors->has('thumbnail') ? str_replace('thumbnail', 'thumbnail', $errors->first('thumbnail')) : 'Medidas: 126x60 256kb Max, (PNG, JPEG)' }} @endsection