@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', '') !!}
@include ('partials.forms.edit.location-select', ['translated_name' => trans('general.location'), 'fieldname' => 'location_id'])
{{ Form::label('next_audit_date', trans('general.next_audit_date'), array('class' => 'col-md-3 control-label')) }}
{!! $errors->first('next_audit_date', '') !!}
{{ Form::label('note', trans('admin/hardware/form.notes'), array('class' => 'col-md-3 control-label')) }}
{!! $errors->first('note', '') !!}
{{Form::close()}}
@stop @section('moar_scripts') @stop