2017-08-25 10:04:19 -07:00
@ extends ( 'layouts/default' )
{{ -- Page title -- }}
@ section ( 'title' )
{{ trans ( 'general.audit' ) }}
@ parent
@ stop
{{ -- Page content -- }}
@ section ( 'content' )
< style >
. input - group {
padding - left : 0 px ! important ;
}
</ style >
< div class = " row " >
<!-- left column -->
< div class = " col-md-7 " >
< div class = " box box-default " >
2018-04-24 02:54:54 -07:00
{{ Form :: open ([
'method' => 'POST' ,
'route' => [ 'asset.audit.store' , $asset -> id ],
'files' => true ,
'class' => 'form-horizontal' ]) }}
2017-08-25 10:04:19 -07:00
< div class = " box-header with-border " >
< h3 class = " box-title " > {{ trans ( 'admin/hardware/form.tag' ) }} {{ $asset -> asset_tag }} </ h3 >
</ div >
< div class = " box-body " >
{{ csrf_field ()}}
@ if ( $asset -> model -> name )
<!-- Asset name -->
< div class = " form-group { { $errors->has ('name') ? 'error' : '' }} " >
{{ Form :: label ( 'name' , trans ( 'admin/hardware/form.model' ), array ( 'class' => 'col-md-3 control-label' )) }}
< div class = " col-md-8 " >
< p class = " form-control-static " > {{ $asset -> model -> name }} </ p >
</ div >
</ div >
@ endif
<!-- Asset Name -->
< div class = " form-group { { $errors->has ('name') ? 'error' : '' }} " >
{{ Form :: label ( 'name' , trans ( 'admin/hardware/form.name' ), array ( 'class' => 'col-md-3 control-label' )) }}
< div class = " col-md-8 " >
< p class = " form-control-static " > {{ $asset -> name }} </ p >
</ div >
</ div >
2017-08-25 18:40:20 -07:00
<!-- Locations -->
2017-10-28 11:17:52 -07:00
@ include ( 'partials.forms.edit.location-select' , [ 'translated_name' => trans ( 'general.location' ), 'fieldname' => 'location_id' ])
2017-08-25 10:04:19 -07:00
2018-09-07 05:39:41 -07:00
<!-- Update location -->
< div class = " form-group " >
< div class = " col-sm-offset-3 col-md-9 " >
< label >
< input type = " checkbox " value = " 1 " name = " update_location " class = " minimal " {{ Input :: old ( 'update_location' ) == '1' ? ' checked="checked"' : '' }} > Update asset location
</ label >
2018-09-07 18:08:18 -07:00
< a href = " # " class = " text-dark-gray " tabindex = " 0 " role = " button " data - toggle = " popover " data - trigger = " focus " title = " <i class='fa fa-life-ring'></i> More Info " data - html = " true " data - content = " Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.<br><br>Note that is this asset is checked out, it will not change the location of the person, asset or location it is checked out to. " >< i class = " fa fa-life-ring " ></ i ></ a >
2018-09-07 05:39:41 -07:00
</ div >
</ div >
2017-08-25 10:04:19 -07:00
<!-- Next Audit -->
< div class = " form-group { { $errors->has ('next_audit_date') ? 'error' : '' }} " >
2017-08-25 18:40:20 -07:00
{{ Form :: label ( 'name' , trans ( 'general.next_audit_date' ), array ( 'class' => 'col-md-3 control-label' )) }}
2017-08-25 10:04:19 -07:00
< div class = " col-md-9 " >
< div class = " input-group date col-md-5 " data - provide = " datepicker " data - date - format = " yyyy-mm-dd " >
< input type = " text " class = " form-control " placeholder = " { { trans('general.next_audit_date') }} " name = " next_audit_date " id = " next_audit_date " value = " { { Input::old('next_audit_date', $next_audit_date ) }} " >
< span class = " input-group-addon " >< i class = " fa fa-calendar " ></ i ></ span >
</ div >
{ !! $errors -> first ( 'next_audit_date' , '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>' ) !! }
</ div >
</ div >
<!-- Note -->
< div class = " form-group { { $errors->has ('note') ? 'error' : '' }} " >
{{ Form :: label ( 'note' , trans ( 'admin/hardware/form.notes' ), array ( 'class' => 'col-md-3 control-label' )) }}
< div class = " col-md-8 " >
< textarea class = " col-md-6 form-control " id = " note " name = " note " > {{ Input :: old ( 'note' , $asset -> note ) }} </ textarea >
{ !! $errors -> first ( 'note' , '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>' ) !! }
</ div >
</ div >
2018-04-24 02:54:54 -07:00
<!-- Images -->
@ include ( 'partials.forms.edit.image-upload' )
2017-08-25 10:04:19 -07:00
</ div > <!--/. box - body -->
< div class = " box-footer " >
< a class = " btn btn-link " href = " { { URL::previous() }} " > {{ trans ( 'button.cancel' ) }} </ a >
2017-08-25 18:40:20 -07:00
< button type = " submit " class = " btn btn-success pull-right " >< i class = " fa fa-check icon-white " ></ i > {{ trans ( 'general.audit' ) }} </ button >
2017-08-25 10:04:19 -07:00
</ div >
</ form >
</ div >
</ div > <!--/. col - md - 7 -->
</ div >
@ stop