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

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

@if ($asset->model->name)
{{ Form::label('name', trans('admin/hardware/form.model'), array('class' => 'col-md-3 control-label')) }}

{{ $asset->model->name }}

@endif
{{ Form::label('name', trans('admin/hardware/form.name'), array('class' => 'col-md-3 control-label')) }}
{!! $errors->first('name', ' :message') !!}
{{ Form::label('assigned_to', trans('admin/hardware/form.checkout_to'), array('class' => 'col-md-3 control-label')) }}
{{ Form::select('assigned_to', $users_list , Input::old('assigned_to', $asset->assigned_to), array('class'=>'select2', 'id'=>'assigned_to', 'style'=>'width:100%')) }} {!! $errors->first('assigned_to', ' :message') !!}
New
{{ 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') !!}
@if ($asset->requireAcceptance())

{{ trans('admin/categories/general.required_acceptance') }}

@endif @if ($asset->getEula())

{{ trans('admin/categories/general.required_eula') }}

@endif
@section('moar_scripts') {{-- Some room for the modals --}} @stop @stop