Ж
The GET method is not supported for this route. Supported methods: POST.
Хотя указываю
<form method="POST" action="{{ route('album.update', ['id' => $album->id]) }}" enctype="multipart/form-data">
@method('PUT')
@csrf
@include('admin.albums._form')
</form>
Сам роут
Route::put( 'album/update_album/{id}', [AlbumsController::class, 'update'])->name('album.update');