@include('web.components.form.select', [ 'label' => 'Device Type', 'name' => 'stock_device_id', 'id' => 'stock_device_id', 'options' => $stock_devices ]) @include('web.components.form.input', [ 'type' => 'text', 'label' => 'Device Nickname', 'name' => 'device_nickname', 'id' => 'device_nickname' ]) @include('web.components.form.select', [ 'label' => 'Device Location', 'name' => 'location_id', 'id' => 'location_id', 'optgroup' => true, 'options' => $locations ]) @include('web.components.form.submit', [ 'label' => 'Add Device', 'name' => 'submit', 'id' => 'submit' ])