@extends('layouts.app') @section('title', 'Edit post') @section('navbar', View::make('inc.navbar')) @section('content')

Edit Post:

@if (session('status'))
{{ session('status') }}
@endif
@csrf
@error('title')
{{ $message }}
@enderror
@error('text')
{{ $message }}
@enderror
@endsection @section('scripts') @endsection