This commit is contained in:
Ludovic CANDELLIER
2022-04-24 22:07:31 +02:00
parent e4672a42d7
commit 5d68e8787a
11 changed files with 147 additions and 45 deletions

View File

@@ -46,7 +46,8 @@ class RegisterController extends Controller
public function showRegistrationForm()
{
return view('Shop.auth.register');
$data = self::init();
return view('Shop.auth.register', $data ?? []);
}
protected function create(array $data)