2016-03-25 01:18:05 -07:00
|
|
|
@extends('layouts/default')
|
|
|
|
|
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
2017-09-28 21:18:16 -07:00
|
|
|
{{ trans('admin/accessories/general.checkin') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
@parent
|
|
|
|
@stop
|
|
|
|
|
2017-09-28 21:18:16 -07:00
|
|
|
@section('header_right')
|
|
|
|
<a href="{{ URL::previous() }}" class="btn btn-primary pull-right">
|
|
|
|
{{ trans('general.back') }}</a>
|
|
|
|
@stop
|
|
|
|
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
{{-- Page content --}}
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-28 21:18:16 -07:00
|
|
|
<div class="row">
|
2020-09-11 16:20:56 -07:00
|
|
|
<div class="col-md-7">
|
2017-09-28 21:18:16 -07:00
|
|
|
<form class="form-horizontal" method="post" action="" autocomplete="off">
|
|
|
|
<!-- CSRF Token -->
|
|
|
|
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
|
|
|
|
|
|
|
|
<div class="box box-default">
|
|
|
|
@if ($accessory->id)
|
|
|
|
<div class="box-header with-border">
|
2020-03-31 23:36:56 -07:00
|
|
|
<h2 class="box-title">{{ $accessory->name }}</h2>
|
2017-09-28 21:18:16 -07:00
|
|
|
</div><!-- /.box-header -->
|
|
|
|
@endif
|
|
|
|
|
2019-05-23 19:39:30 -07:00
|
|
|
<div class="box-body">
|
2017-09-28 21:18:16 -07:00
|
|
|
<!-- CSRF Token -->
|
|
|
|
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
|
|
|
|
|
|
|
|
@if ($accessory->name)
|
|
|
|
<!-- accessory name -->
|
|
|
|
<div class="form-group">
|
2020-09-11 16:20:56 -07:00
|
|
|
<label class="col-sm-3 control-label">{{ trans('admin/hardware/form.name') }}</label>
|
2017-09-28 21:18:16 -07:00
|
|
|
<div class="col-md-6">
|
|
|
|
<p class="form-control-static">{{ $accessory->name }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
<!-- Note -->
|
|
|
|
<div class="form-group {{ $errors->has('note') ? 'error' : '' }}">
|
2020-09-11 16:20:56 -07:00
|
|
|
<label for="note" class="col-md-3 control-label">{{ trans('admin/hardware/form.notes') }}</label>
|
2017-09-28 21:18:16 -07:00
|
|
|
<div class="col-md-7">
|
2020-04-21 03:58:31 -07:00
|
|
|
<textarea class="col-md-6 form-control" id="note" name="note">{{ old('note', $accessory->note) }}</textarea>
|
2020-04-01 03:21:15 -07:00
|
|
|
{!! $errors->first('note', '<span class="alert-msg" aria-hidden="true"><i class="fa fa-times" aria-hidden="true"></i> :message</span>') !!}
|
2017-09-28 21:18:16 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-05-23 19:39:30 -07:00
|
|
|
<!-- Checkout/Checkin Date -->
|
|
|
|
<div class="form-group{{ $errors->has('checkin_at') ? ' has-error' : '' }}">
|
|
|
|
{{ Form::label('checkin_at', trans('admin/hardware/form.checkin_date'), array('class' => 'col-md-3 control-label')) }}
|
2020-09-11 16:20:56 -07:00
|
|
|
<div class="col-md-7">
|
|
|
|
<div class="input-group col-md-5 required" style="padding-left: 0px;">
|
2019-05-23 19:39:30 -07:00
|
|
|
<div class="input-group date" data-provide="datepicker" data-date-format="yyyy-mm-dd" data-date-end-date="0d" data-autoclose="true">
|
2019-12-10 19:32:50 -08:00
|
|
|
<input type="text" class="form-control" placeholder="{{ trans('general.select_date') }}" name="checkin_at" id="checkin_at" value="{{ Request::old('checkin_at', date('Y-m-d')) }}">
|
2019-05-23 19:39:30 -07:00
|
|
|
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
|
|
|
</div>
|
|
|
|
{!! $errors->first('checkin_at', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2017-10-04 23:28:13 -07:00
|
|
|
</div>
|
|
|
|
<div class="box-footer">
|
|
|
|
<a class="btn btn-link" href="{{ URL::previous() }}">{{ trans('button.cancel') }}</a>
|
2020-04-01 01:26:44 -07:00
|
|
|
<button type="submit" class="btn btn-primary pull-right"><i class="fa fa-check icon-white" aria-hidden="true"></i>
|
2018-03-25 13:46:57 -07:00
|
|
|
{{ trans('general.checkin') }}</button>
|
2017-09-28 21:18:16 -07:00
|
|
|
</div>
|
2019-05-23 19:39:30 -07:00
|
|
|
|
|
|
|
|
2017-09-28 21:18:16 -07:00
|
|
|
</div> <!-- .box.box-default -->
|
|
|
|
</form>
|
|
|
|
</div> <!-- .col-md-9-->
|
|
|
|
</div> <!-- .row -->
|
2016-03-25 01:18:05 -07:00
|
|
|
@stop
|