@extends('layouts.layout') @section('title', 'Edit Blog') @section('content')
{!! Form::model($blog, ['method' => 'PUT', 'enctype' => 'multipart/form-data', 'id' => 'myform', 'route' => ['blog.update', $blog->id ] ]) !!} @include('blog.form')
{!! Form::close() !!}
@endsection