@extends('layouts.adminpages') @section('content')
Volver
{{ $post->exists ? 'Editar' : 'Crear' }} Noticia

@csrf @if ($post->exists) @method('PUT') @endif
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('img')) {{ $errors->first('img') }} @endif
@if ($errors->has('pdf')) {{ $errors->first('pdf') }} @endif
@if ($errors->has('url')) {{ $errors->first('url') }} @endif
@if ($errors->has('state')) {{ $errors->first('state') }} @endif
@endsection @section('scripts') @endsection