Device Type: {{ $device['device_type'] }}

@include('web.components.form.input', [ 'type' => 'text', 'label' => 'Device Nickname', 'name' => 'device_nickname', 'id' => 'device_nickname', 'value' => $device['device_nickname'] ]) @include('web.components.form.select', [ 'label' => 'Device Location', 'name' => 'location_id', 'id' => 'location_id', 'optgroup' => true, 'options' => $locations, 'value' => $device['location_id'] ]) @include('web.components.form.select', [ 'label' => 'Device Status', 'name' => 'device_status', 'id' => 'device_status', 'options' => [ 'on' => 'On', 'off' => 'Off' ], 'value' => $device['device_status'] ]) @include('web.components.form.submit', [ 'label' => 'Update Device', 'name' => 'submit', 'id' => 'submit' ])

Remove Device

Please confirm before removing the device