curl --location --request POST 'http://localhost:8000/api/v1/employee/2' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--form 'first_name="Bg"' \
--form 'last_name="Skin"' \
--form 'nik="12345678909878"' \
--form 'birth_date="2010-10-10"' \
--form 'birth_place="Malang"' \
--form 'email="bgskin1@mail.co"' \
--form 'phone="6285730316702"' \
--form 'photo_url=@""' \
--form 'role="CASHIER"' \
--form 'username="casier"' \
--form 'password="password"' \
--form 'password_confirmation="password"' \
--form 'is_active="1"' \
--form 'address="Malang"' \
--form '_method="put"'