['nullable', 'exists:categories,id'], 'notes' => ['nullable', 'string'], 'notes_iv' => ['nullable', 'string', 'size:16'], ]; } public function messages(): array { return [ 'category_id.exists' => 'The selected category does not exist.', 'notes_iv.size' => 'The notes IV must be exactly 16 characters.', ]; } }