@extends('layout.dashboard') @section('content')
{{ trans('dashboard.team.team') }}
@if($created = Session::get('created'))
{{ sprintf("%s %s", trans('dashboard.notifications.awesome'), trans('dashboard.team.add.success')) }}
@elseif($errors = Session::get('errors'))
{{ sprintf("%s %s", trans('dashboard.notifications.whoops'), trans('dashboard.team.add.failure')) }}
@endif
@stop