there is a form with a select field "state", the value of which must be "draft" or "published". how to do it? does not work now.
$this->validate($request, [
'name' => 'required|unique:article_categories' . $category->id,
'description' => 'required|min:200',
'state' => 'draft' || 'published'
]);