@extends('backend.layouts.app') @section('title', $data['p_heading']) @section('content') {!! Form::model($data['flyer'], ['method' => 'PATCH', 'route' => ['admin.flyers.update', $data['flyer']->id], 'files' => true]) !!}
{{ $data['p_heading'] }}
@include('backend.flyers._form')
{!! Form::hidden('id', $data['flyer']->id) !!} {!! Form::close() !!} @stop