@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)
{{ trans('admin/hardware/form.name') }}
{{ $accessory->name }}
@endif
{{ trans('admin/hardware/form.notes') }}
{{ old('note', $accessory->note) }}
{!! $errors->first('note', '
:message
') !!}
{{ Form::label('checkin_at', trans('admin/hardware/form.checkin_date'), array('class' => 'col-md-3 control-label')) }}
{!! $errors->first('checkin_at', '
:message
') !!}
@stop