@extends('google::layouts.master') @section('title', '| Editing GA Event Action ' . $action->name) @section('content')

{{ $action->name }}

Back to Actions
View/Update
{!! Form::model($action, ['method' => 'PUT', 'url' => "/google/analytics/events/actions/{$action->id}", 'class' => 'form-horizontal col-md-12', 'role' => 'form', 'files' => true]) !!} @include('google::analytics.events.actions._form', [ 'disabledField' => Auth::user()->hasAnyRole(['ADMIN']) ? '' : 'disabled' ]) @if (Auth::user()->hasAnyRole(['ADMIN']))
@endif {!! Form::close() !!}
@endsection