Merge branch 'develop'

This commit is contained in:
snipe 2017-12-19 22:15:51 -08:00
commit e5a7e6619f

View file

@ -12,4 +12,12 @@ class RegisterController extends Controller
{
$this->middleware('guest');
}
public function showRegistrationForm() {
abort(404,'Page not found');
}
public function register() {
abort(404,'Page not found');
}
}