from aiogram.types import ReplyKeyboardMarkup, KeyboardButton
#Кнопки клавиатуры админа
button_load = KeyboardButton('Загрузить')
button_delete = KeyboardButton('Удалить')
button_case_admin = ReplyKeyboardMarkup(resize_keyboard=True).add(button_load)\
.add(button_delete)
Сделайте вот так
button_load = KeyboardButton('/Загрузить')
button_delete = KeyboardButton('/Удалить')
Для изменения
dp.register_message_handler(cm_start, commands=['Загрузить'], state=None)
commands=['Загрузить']
замени на text='Загрузить'
dp.register_message_handler(cm_start, text='Загрузить', state=None)
Тогда можно будет
button_load = KeyboardButton('Загрузить')