components([ Select::make('group_id') ->relationship('group', 'id') ->required(), TextInput::make('first_name') ->required(), TextInput::make('last_name') ->required(), DatePicker::make('birthdate') ->required(), FileUpload::make('image') ->image(), FileUpload::make('local_passport') ->downloadable(), FileUpload::make('international_passport') ->downloadable(), ]); } }