Fixed bug preventing LDAP users updating thier profile

Made email not required when a profile is updated. LDAP users without admin privileges could did not have an email field to submit therefore could previously not update thier profile.
This commit is contained in:
Dan Brown 2016-02-08 20:35:23 +00:00
parent d32460070f
commit 5d73d17c74

View File

@ -130,8 +130,8 @@ class UserController extends Controller
});
$this->validate($request, [
'name' => 'required',
'email' => 'required|email|unique:users,email,' . $id,
'name' => 'min:2',
'email' => 'min:2|email|unique:users,email,' . $id,
'password' => 'min:5|required_with:password_confirm',
'password-confirm' => 'same:password|required_with:password',
'role' => 'exists:roles,id'