model = $model; $this->title = ' ' . $this->title; $this->id = $id; } public function render() { $form = ResetPasswordForm::make()->payload(['id' => $this->id]); return Modal::make() ->lg() ->title($this->title) ->body($form) ->button($this->title); } }