@extends('dashboard.layout.app')
@section('style')
@endsection
@section('content')
@include('dashboard.blocks.title',['button' => true, 'route' =>route('posts.index'), 'icon' => 'arrow-left'])
{!!Form::model($row , ['url' => ['/dashboard/posts/'.$row->id] , 'method' => 'PATCH','files'=>true]) !!}
@include('dashboard.posts.form')
{!!Form::close() !!}
@endsection
@section('script')
@endsection