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