@extends('admin.layouts.admin_app') @include('admin.include.form-styles') @section('dashboard_content') Success Stories New publication Cancel Save @if($story->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 }} Description: {!! old('description', $story->descripcion) !!} {{ $errors->has('description') ? $errors->first('description') : null }} {{-- Contenido: {!! old('content') ?? $blog->content !!} {{ $errors->has('content') ? $errors->first('content') : null }} --}} Images and attachments Image: {{ $errors->has('img') ? str_replace('img', 'img', $errors->first('img')) : 'Medidas: 126x60 1024kb Max, (PNG, JPEG)' }} Document: {{ $errors->has('pdf') ? str_replace('pdf', 'pdf', $errors->first('pdf')) : '5mb Max (PDF)' }} @endsection