user edit form
This commit is contained in:
+2
-1
@@ -21,6 +21,7 @@ use MightyPork\Exceptions\NotExistException;
|
||||
* @property string $name - unique, for vanity URL
|
||||
* @property string $title - for display
|
||||
* @property string $bio - user bio
|
||||
* @property string $website - custom url
|
||||
* @property string $email - unique, for login and social auth chaining
|
||||
* @property string $password - hashed pw
|
||||
* @property bool $confirmed - user e-mail is confirmed
|
||||
@@ -48,7 +49,7 @@ class User extends Authenticatable
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'name', 'title', 'email', 'password',
|
||||
'name', 'title', 'email', 'password', 'bio', 'website'
|
||||
];
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user