Skip to content

Commit

Permalink
fix validate address
Browse files Browse the repository at this point in the history
  • Loading branch information
miftahurrahmi committed Sep 27, 2023
1 parent ee70be7 commit 84d9f37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controllers/BadasoAuthController.php
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public function register(Request $request)
'phone' => 'required|numeric|min:6',
'email' => 'required|string|email|max:255|unique:Uasoft\Badaso\Models\User',
'password' => 'required|string|min:6|confirmed',
'address' => 'nullable',
'address' => 'required|string|max:255',
'gender' => 'required|string',
]);

Expand Down

0 comments on commit 84d9f37

Please sign in to comment.