@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/hardware/general.bulk_checkin') }} @parent @stop {{-- Page content --}} @section('content')

{{ trans('admin/hardware/form.tag') }}

{{ csrf_field() }} @if ($removed_assets->isNotEmpty())
Warning

{{ trans('general.unassigned_assets_removed') }}

@endif @include('partials.forms.edit.asset-select', [ 'translated_name' => trans('general.assets'), 'fieldname' => 'selected_assets[]', 'multiple' => true, 'required' => true, 'asset_status_type' => 'Deployed', 'select_id' => 'assigned_assets_select', 'asset_selector_div_id' => 'assets_to_checkin_div', 'asset_ids' => old('selected_assets'), ])
{!! $errors->first('status_id', '') !!}
{!! $errors->first('checkin_at', '') !!}
{!! $errors->first('note', '') !!}
@stop @section('moar_scripts') @stop