curl --location --request POST 'http://localhost:8000/api/v1/employee' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--form 'first_name="Bang"' \
--form 'last_name="Kasir"' \
--form 'nik="12345678909879"' \
--form 'birth_date="2004-10-10"' \
--form 'birth_place="Malang"' \
--form 'email="bg.kasir@mail.com"' \
--form 'phone="6285634563456"' \
--form 'photo_url=@""' \
--form 'role="CASHIER"' \
--form 'username="bgkasir"' \
--form 'password="password"' \
--form 'password_confirmation="password"' \
--form 'is_active="1"' \
--form 'address="Malang"'