Modified the affectation of the value of the password in credential mail sent for the first user sign up (#5446)

* Modified the affectation of the value of the password

* Remove e()
This commit is contained in:
lea-mink 2018-05-02 23:40:41 +02:00 committed by snipe
parent 42f0eebf8f
commit a0afa9f2e8

View file

@ -192,8 +192,7 @@ class SettingsController extends Controller
$data['username'] = $user->username;
$data['first_name'] = $user->first_name;
$data['last_name'] = $user->last_name;
$data['password'] = $user->password;
$data['password'] = $request->input('password');
$user->notify(new FirstAdminNotification($data));
/*Mail::send(['text' => 'emails.firstadmin'], $data, function ($m) use ($data) {