@extends('layouts.app') @section('pagecontent')

Update post

Edit post.
@method('patch') @csrf
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('body')) {{ $errors->first('body') }} @endif
Back
@endsection @section('scripts') @include('inc.scripts') @endsection