'required|min:6' ]; public function mount() { $this->application = Application::find($this->applicationId); $this->fill([ 'name' => $this->application->name, 'fqdn' => $this->application->fqdn, 'git_repository' => $this->application->git_repository, 'git_branch' => $this->application->git_branch, 'git_commit_sha' => $this->application->git_commit_sha, ]); } public function submit() { $this->validate(); dd($this->name); } }