Добрый день на странице есть две форму, одна ведет на метод saveProfile, вторая на createTeam, но как только создал вторую форму выдает ошибку Action App\Http\Controllers\ProfileController@saveProfile not defined
роуты:
Route::post('/profile',[\App\Http\Controllers\ProfileController::class, 'saveProfile']);
Route::post('/profile',[\App\Http\Controllers\ProfileController::class, 'createTeam']);
Вторая форма:
<form method="POST" action="{{action('App\Http\Controllers\ProfileController@createTeam') }}">
<input class="input-footer" name="team" placeholder="Название команды" type="text">
<button class="submit-btn btn--size btn--mr">Создать</button>
</form>