mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-22 18:55:43 +01:00
Tidy up the DashUserController code
This commit is contained in:
parent
d24959d6fd
commit
e51b40186f
@ -52,11 +52,21 @@ class DashUserController extends Controller
|
|||||||
|
|
||||||
if (! $user->isValid()) {
|
if (! $user->isValid()) {
|
||||||
return Redirect::back()->withInput(Binput::except('password'))
|
return Redirect::back()->withInput(Binput::except('password'))
|
||||||
->with('title', sprintf("<strong>%s</strong> %s", trans('dashboard.notifications.whoops'), trans('dashboard.team.edit.failure')))
|
->with('title', sprintf(
|
||||||
|
'<strong>%s</strong> %s',
|
||||||
|
trans('dashboard.notifications.whoops'),
|
||||||
|
trans('dashboard.team.edit.failure')
|
||||||
|
))
|
||||||
->with('errors', $user->getErrors());
|
->with('errors', $user->getErrors());
|
||||||
}
|
}
|
||||||
|
|
||||||
return Redirect::back()->with('success', sprintf("<strong>%s</strong> %s", trans('dashboard.notifications.awesome'), trans('dashboard.team.edit.success')));
|
$successMsg = sprintf(
|
||||||
|
'<strong>%s</strong> %s',
|
||||||
|
trans('dashboard.notifications.awesome'),
|
||||||
|
trans('dashboard.team.edit.success')
|
||||||
|
);
|
||||||
|
|
||||||
|
return Redirect::back()->with('success', $successMsg);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user