@include("cfp.components.form-group", [
"label" => "Experience Rate",
"name" => "exp",
"type" => "number",
"minNum" => 0,
"value" => $event->EXP_PER,
"placeholder" => "% experience ...",
"helper" => "If left blank the value will be 0."
])
@include("cfp.components.form-group", [
"label" => "Game Points Rate",
"name" => "gp",
"type" => "number",
"minNum" => 0,
"value" =>$event->GP_PER,
"placeholder" => "% GP ...",
"helper" => "If left blank the value will be 0."
])
@include("cfp.components.form-group", [
"label" => "Ranked Rate",
"name" => "rp",
"type" => "number",
"minNum" => 0,
"value" => $event->RANKSCORE_PER ?? 0,
"placeholder" => "% RP ...",
"helper" => "If left blank the value will be 0."
])