Skip to content

Commit

Permalink
Merge pull request bagisto#8845 from shivendra-webkul/issue_8821
Browse files Browse the repository at this point in the history
Fixed issue bagisto#8821
  • Loading branch information
jitendra-webkul authored Oct 31, 2023
2 parents a0f4aba + b7776be commit 1f6ee25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function index()
*/
public function store(RegistrationRequest $registrationRequest)
{
$data = array_merge(request()->only([
$data = array_merge($registrationRequest->only([
'first_name',
'last_name',
'email',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class="w-full max-w-[870px] m-auto px-[90px] py-[60px] border border-[#E9E9E9] r
type="text"
name="first_name"
class="!p-[20px_25px] rounded-lg"
:value="old('last_name')"
:value="old('first_name')"
rules="required"
:label="trans('shop::app.customers.signup-form.first-name')"
:placeholder="trans('shop::app.customers.signup-form.first-name')"
Expand Down

0 comments on commit 1f6ee25

Please sign in to comment.