@extends('pagecomponents::layouts.master') @section('title', '| Editing section ' . $pillar->name) @section('content')

{{ $pillar->name }}

Back to Page Sections
View/Update
{!! Form::model($pillar, ['method' => 'PUT', 'url' => "/page-components/pillars/{$pillar->id}", 'class' => 'form-horizontal col-md-12', 'role' => 'form', 'files' => true]) !!} @include('pagecomponents::pillars._form', [ 'disabledField' => Auth::user()->hasAnyRole(['ADMIN', 'EDITOR']) ? '' : 'disabled' ]) @if (Auth::user()->hasAnyRole(['ADMIN', 'EDITOR']))
@endif {!! Form::close() !!}
@endsection