This commit is contained in:
Ludovic CANDELLIER
2022-04-24 22:07:31 +02:00
parent 1fc860715f
commit f3e9ccaa46
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)