@extends('layout.dashboard') @section('content')
{{ trans_choice('dashboard.components.components', 2) }} > {{ trans('dashboard.components.edit.title') }}
@if($savedComponent = Session::get('savedComponent'))
@if($savedComponent->isValid()) {{ sprintf("%s %s", trans('dashboard.notifications.awesome'), trans('dashboard.components.edit.success')) }} @else {{ sprintf("%s %s", trans('dashboard.notifications.whoops'), trans('dashboard.components.edit.failure').' '.$component->getErrors()) }} @endif
@endif
@if($groups->count() > 0)
@endif
{{ trans('forms.components.tags-help') }}
{{ trans('forms.cancel') }}
@stop