@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/hardware/general.clone') }} @parent @stop {{-- Page content --}} @section('content')
{!! $errors->first('asset_tag', ' :message') !!}
{!! $errors->first('name', ' :message') !!}
{!! $errors->first('serial', ' :message') !!}
{!! $errors->first('order_number', ' :message') !!}
{{ Form::select('model_id', $model_list , Input::old('model_id', $asset->model_id), array('class'=>'select2', 'style'=>'min-width:350px')) }} {!! $errors->first('model_id', ' :message') !!}
{!! $errors->first('purchase_date', ' :message') !!}
$ {!! $errors->first('purchase_cost', ' :message') !!}
{{ trans('admin/hardware/form.months') }} {!! $errors->first('warranty_months', ' :message') !!}
{{ Form::select('depreciation_id', $depreciation_list , Input::old('depreciation_id', $asset->depreciation_id), array('class'=>'select2', 'style'=>'width:250px')) }} {!! $errors->first('depreciation_id', ' :message') !!}
{{ Form::select('status_id', $statuslabel_list , Input::old('status_id', $asset->status_id), array('class'=>'select2', 'style'=>'width:250px')) }} {!! $errors->first('depreciation_id', ' :message') !!}
{!! $errors->first('notes', ' :message') !!}
{{ trans('button.cancel') }}
@stop