@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/accessories/general.checkin') }} @parent @stop @section('header_right') {{ trans('general.back') }} @stop {{-- Page content --}} @section('content')
@if ($accessory->id)

{{ $accessory->name }}

@endif
@if ($accessory->name)

{{ $accessory->name }}

@endif
{!! $errors->first('note', '') !!}
{{ Form::label('checkin_at', trans('admin/hardware/form.checkin_date'), array('class' => 'col-md-3 control-label')) }}
{!! $errors->first('checkin_at', ' :message') !!}
@stop