You can't change LAST_NUMBER
, it's the database's internal record of the highest value reserved in the cache and written to disk for crash recovery. You generally can't (and shouldn't) change anything in the data dictionary.
If you want to reset the sequence to 1 then you can change the increment to a negative value (equal to the current value) and call nextval, then change the increment back to 1; or drop and recreate the sequence; or from 12c you can explicitly restart it. Since you're on 11g see How do I reset a sequence in Oracle?.
You could do some of that from the SQL Developer object viewer, but not in one step. You can change the increment by clicking on the edit button right under the 'details' tab, but would then have to call nextval somewhere else before changing back. And you could drop the sequence from the 'actions' drop-down, but then you'd need to recreate it as a separate action.