Trying to test a form but error: Attempt to read property "form" on null
I forgot to authenticate the user before access the form.
$user = User::factory()->create();
// because i am using spatie package
$user->assignRole('super_admin');
$this->actingAs($user);