user edit form

This commit is contained in:
2018-07-22 23:08:16 +02:00
parent ddb885b4e2
commit 1c6dedbb34
29 changed files with 730 additions and 395 deletions
+2 -1
View File
@@ -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'
];
/**