@include("cfp.components.form-group", [
"control" => "text",
"label" => "Nick of Player",
"name" => "nick",
"value" => $user->NICK ?? "Sem personagem"
])
@include("cfp.components.form-group", [
"control" => "text",
"label" => "User ID of Player",
"name" => "user",
"value" => $user->member->USER_ID
])
@include("cfp.components.form-group", [
"label" => "Reason",
"name" => "reason",
"placeholder" => "Tell the reason for the ban ...",
"value" => old("reason")
])
@include("cfp.components.form-group", [
"label" => "Proof (Screenshot URL)",
"name" => "proof",
"placeholder" => "Image url to prove punishment ...",
"value" => old("proof")
])
@include("cfp.components.form-group", [
"control" => "text",
"label" => "Punishment Date and Time (now)",
"name" => "date",
"value" => Helper::date_stringFormat(now()->toDateTimeString(), true)
])
@include("cfp.components.form-group", [
"label" => "Punishment Time in days",
"name" => "time",
"placeholder" => "Time in days ...",
"helper" => "If permanent put 0",
"value" => old("time")
])
@include("cfp.components.form-group", [
"control" => "button",
"btn_icon" => "fa fa-fw fa-hammer",
"value" => "Apply Punishment"
])