You don't post any of the code where the checkboxes are saved?
Remember that checkboxes are NOT present in form data if they are unchecked. You have to test if it is present or set to false
for instance
$account->state = $request->state==1 ? true : false ;