@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.bulkaudit') }} @parent @stop {{-- Page content --}} @section('content')
{{ Form::open(['method' => 'POST', 'class' => 'form-horizontal', 'role' => 'form', 'id' => 'audit-form' ]) }}
{{ trans('general.bulkaudit') }}
{{csrf_field()}}
{{ Form::label('asset_tag', trans('general.asset_tag'), array('class' => 'col-md-3 control-label', 'id' => 'audit_tag')) }}
{!! $errors->first('asset_tag', '
:message
') !!}
@include ('partials.forms.edit.location-select', ['translated_name' => trans('general.location'), 'fieldname' => 'location_id'])
{{ trans('admin/hardware/form.asset_location') }}
{{ Form::label('next_audit_date', trans('general.next_audit_date'), array('class' => 'col-md-3 control-label')) }}
{!! $errors->first('next_audit_date', '
:message
') !!}
{{ Form::label('note', trans('admin/hardware/form.notes'), array('class' => 'col-md-3 control-label')) }}
{{ old('note') }}
{!! $errors->first('note', '
:message
') !!}
{{Form::close()}}
{{ trans('general.bulkaudit_status') }} (
0
assets audited)
{{ trans('general.asset_tag') }}
{{ trans('general.bulkaudit_status') }}
{{ trans('admin/hardware/form.processing_spinner') }}
@stop @section('moar_scripts') @stop