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

{{ trans('admin/hardware/form.tag') }} {{ $asset->asset_tag }}

@if ($backto == 'user')
@else @endif {{csrf_field()}}

@if (($asset->model) && ($asset->model->name)) {{ $asset->model->name }} @else {{ trans('admin/hardware/general.model_invalid')}} {{ trans('admin/hardware/general.model_invalid_fix')}} {{ trans('admin/hardware/general.edit') }} @endif

{!! $errors->first('name', '') !!}
{!! $errors->first('status_id', '') !!}
{!! $errors->first('checkin_at', '') !!}
{!! $errors->first('note', '') !!}
@include("models/custom_fields_form", [ 'model' => $asset->model, 'show_custom_fields_type' => 'checkin' ])
@stop