@extends('layout.dashboard') @section('content')
{{ trans('dashboard.user.user') }}
@if($updated = Session::get('updated'))
@if($updated) {{ sprintf("%s %s", trans('dashboard.notifications.awesome'), trans('dashboard.user.edit.success')) }} @else {{ sprintf("%s %s", trans('dashboard.notifications.whoops'), trans('dashboard.user.edit.failure')) }} @endif
@endif
@if(Auth::user()->isAdmin) {{ trans('cachet.api.revoke') }} @endif
@stop