hi! im newbie in filament and php(laravel), so my question is next: can you explain to me please how i can do edit page like there (https://laraveldaily.com/post/filament-edit-only-single-record-custom-page) but with filament 2.x on our project we use exactly it. for now i created a custom page via command(php artisan make:filament-page EditNotificationBoard) and its content is:
<?php
namespace App\Filament\Pages;
use Filament\Forms\ComponentContainer; use Filament\Forms\Components\TextInput; use Filament\Forms\Concerns\InteractsWithForms; use Filament\Forms\Contracts\HasForms; use Filament\Pages\Page; use Filament\Resources\Form;