@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.audit') }} @parent @stop {{-- Page content --}} @section('content') <style> .input-group { padding-left: 0px !important; } </style> <div class="row"> <!-- left column --> <div class="col-md-7"> <div class="box box-default"> <form class="form-horizontal" method="post" action="" autocomplete="off"> <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> <!-- Locations --> <div id="location_id" class="form-group{{ $errors->has('location_id') ? ' has-error' : '' }}"> {{ Form::label('location_id', trans('general.location'), array('class' => 'col-md-3 control-label')) }} <div class="col-md-9"> {{ Form::select('location_id', $locations_list , Input::old('location_id'), array('class'=>'select2', 'id'=>'location_id', 'style'=>'width:100%')) }} {!! $errors->first('location_id', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!} </div> </div> <!-- Next Audit --> <div class="form-group {{ $errors->has('next_audit_date') ? 'error' : '' }}"> {{ Form::label('name', trans('general.next_audit_date'), array('class' => 'col-md-3 control-label')) }} <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> </div> <!--/.box-body--> <div class="box-footer"> <a class="btn btn-link" href="{{ URL::previous() }}"> {{ trans('button.cancel') }}</a> <button type="submit" class="btn btn-success pull-right"><i class="fa fa-check icon-white"></i> {{ trans('general.audit') }}</button> </div> </form> </div> </div> <!--/.col-md-7--> </div> @stop