@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') !!}
{{ Form::label('location_id', trans('general.location'), array('class' => 'col-md-3 control-label')) }}
{{ Form::select('location_id', $locations_list , Input::old('location_id'), array('class'=>'select2', 'id'=>'location_id', 'style'=>'width:100%')) }} {!! $errors->first('location_id', ' :message') !!}
{{ 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')) }}
{!! $errors->first('note', ' :message') !!}
{{Form::close()}}
@stop @section('moar_scripts') @stop