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