public function store(Request $request)
{
$InfoGeneral = InfoGeneral::create([
'name_person' => request('name_person'),
'type_person' => request('type_person'),
'test_type' => request('test_type'),
'count_question' => request('count_question')
]);
$InfoGeneral->save();
$count_questions = $InfoGeneral->count_question;
//Как отсюда передать count_questions в следующий контроллер edit и перейти в edit (в edit на основании этого значения будет строится страница)
}