@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/kits/general.checkout') }} @parent @stop {{-- Page content --}} @section('content')
{{ csrf_field() }} @include ('partials.forms.edit.user-select', ['translated_name' => trans('general.select_user'), 'fieldname' => 'user_id', 'required'=> 'true'])
{{ Form::label('name', trans('admin/hardware/form.checkout_date'), array('class' => 'col-md-3 control-label')) }}
{!! $errors->first('checkout_at', ' :message') !!}
{{ Form::label('name', trans('admin/hardware/form.expected_checkin'), array('class' => 'col-md-3 control-label')) }}
{!! $errors->first('expected_checkin', ' :message') !!}
{{ Form::label('note', trans('admin/hardware/form.notes'), array('class' => 'col-md-3 control-label')) }}
{!! $errors->first('note', ' :message') !!}
@stop @section('moar_scripts') @include('partials/assets-assigned') @stop @section('notifications') @parent @stop