@extends('layouts.app') @section('title', 'Edit Post ') @section('content')

Edit

Back
{!! Form::model($post, ['method' => 'PUT', 'route' => ['posts.update', $post->id ] ]) !!} @include('post._form') {!! Form::submit('Save Changes', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@endsection