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