|
@@ -32,8 +32,6 @@ trait HasSteps
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
|
|
- $stepBuilder->stash($data);
|
|
|
|
-
|
|
|
|
$steps = $stepBuilder->all();
|
|
$steps = $stepBuilder->all();
|
|
|
|
|
|
if ($this->isStepFormValidationRequest()) {
|
|
if ($this->isStepFormValidationRequest()) {
|
|
@@ -81,6 +79,9 @@ trait HasSteps
|
|
return $this->makeValidationErrorsResponse($validationMessages);
|
|
return $this->makeValidationErrorsResponse($validationMessages);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ // Stash input data.
|
|
|
|
+ $this->step()->stash($data);
|
|
|
|
+
|
|
return $this->ajaxResponse('Success');
|
|
return $this->ajaxResponse('Success');
|
|
}
|
|
}
|
|
|
|
|