<?php

error_reporting(-1);

$number = 'л232ул';
$regExp='/^[а-яё][0-9]{3}[a-яё]{2}$/u';
$matches=[];

if(preg_match($regExp,$number,$matches)){
	echo "Все верно,номер автомобиля {$matches[0]}";
}else{
	echo "Ошибка,введите номер автомобиля по схеме (бцццбб)";
}

?>
