url prepopulate username

2 Replies
Dennis Koch
Dennis Koch5mo ago
Not out of the box, but you could try filling the form with the data on the mount of the page:
public function mount()
{
$this->form->fill(['username' => request()->get('username');
}
public function mount()
{
$this->form->fill(['username' => request()->get('username');
}
Matthew
MatthewOP5mo ago
Shall try, thanks.

Did you find this page helpful?