@extends('layouts.app') @section('title') Edit Form @endsection @section('content')

Edit Form

@include('stisla-templates::common.errors') @include('flash::message')
{!! Form::model($form, ['route' => ['forms.update', $form->id], 'method' => 'patch']) !!}
@include('forms.fields')
{!! Form::close() !!}
@endsection