@extends('layout.dashboard') @section('content')
{{ trans('dashboard.incidents.templates.title') }} > {{ trans('dashboard.incidents.templates.edit.title') }}
@if($updatedTemplate = Session::get('updatedTemplate'))
@if($updatedTemplate->isValid()) {{ sprintf("%s - %s", trans('dashboard.notifications.awesome'), trans('dashboard.incidents.templates.edit.success')) }} @else {{ sprintf("%s - %s", trans('dashboard.notifications.whoops'), trans('dashboard.incidents.templates.edit.failure').' '.$updatedTemplate->getErrors()) }} @endif
@endif
@stop