@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/components/general.checkin') }} @parent @stop @section('header_right')
{{ trans('general.back') }}
@stop {{-- Page content --}} @section('content')
{{csrf_field()}}
{{ $component->name }}
{{ trans('general.checkin_from') }}
{{ $asset->present()->fullName }}
{{ trans('general.qty') }}
Must be {{ $component_assets->assigned_qty }} or less.
{!! $errors->first('checkin_qty', '
:message
') !!}
{{ trans('admin/hardware/form.notes') }}
{{ old('note', $component->note) }}
{!! $errors->first('note', '
:message
') !!}
@stop