Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | public function mount(): void |
||
30 | { |
||
31 | $user = User::with('account')->find(Auth::user()->id); |
||
32 | $this->form->first_name = $user->first_name; |
||
33 | $this->form->last_name = $user->last_name; |
||
34 | $this->form->twitter = $user->twitter; |
||
35 | $this->form->facebook = $user->facebook; |
||
36 | $this->form->biography = $user->biography; |
||
37 | $this->form->signature = $user->signature; |
||
38 | } |
||
66 |