@extends('default.layout') @section('content')

{{isset($post) ? 'Editar' : 'Novo'}} Post

@csrf
@if($errors->has('titulo'))
{{ $errors->first('titulo') }}
@endif
@if($errors->has('categoria_id'))
{{ $errors->first('categoria_id') }}
@endif
@if($errors->has('autor_id'))
{{ $errors->first('autor_id') }}
@endif
@if($errors->has('tags'))
{{ $errors->first('tags') }}
@endif
@if($errors->has('texto'))
{{ $errors->first('texto') }}
@endif
img)) style="background-image: url(/ecommerce/posts/{{$post->img}})" @else style="background-image: url(/imgs/no_image.png)" @endif>
.png, .jpg, .jpeg @if($errors->has('file'))
{{ $errors->first('file') }}
@endif *Recomendado 800x400
@endsection