@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/hardware/form.update') }} @parent @stop @section('header_right') {{ trans('general.back') }} @stop {{-- Page content --}} @section('content')

{{ trans('admin/hardware/form.bulk_update_help') }}

{{ trans('admin/hardware/form.bulk_update_warn', ['asset_count' => count($assets)]) }}
{!! $errors->first('purchase_date', ' :message') !!}
{{ Form::select('status_id', $statuslabel_list , Input::old('status_id'), array('class'=>'select2', 'style'=>'width:350px')) }} {!! $errors->first('status_id', ' :message') !!}
{{ Form::select('model_id', $models_list , Input::old('model_id'), array('class'=>'select2', 'style'=>'width:350px')) }} {!! $errors->first('model_id', ' :message') !!}
{{ Form::select('rtd_location_id', $location_list , Input::old('rtd_location_id'), array('class'=>'select2', 'style'=>'width:350px')) }} {!! $errors->first('status_id', ' :message') !!}
{{ \App\Models\Setting::first()->default_currency }} {!! $errors->first('purchase_cost', ' :message') !!}
{{ Form::select('supplier_id', $supplier_list , Input::old('supplier_id'), array('class'=>'select2', 'style'=>'min-width:350px')) }} {!! $errors->first('supplier_id', ' :message') !!}
{{ Form::select('company_id', $companies_list , Input::old('company_id'), array('class'=>'select2', 'style'=>'width:350px')) }} {!! $errors->first('company_id', ' :message') !!}
{!! $errors->first('order_number', ' :message') !!}
{{ trans('admin/hardware/form.months') }} {!! $errors->first('warranty_months', ' :message') !!}
@foreach ($assets as $key => $value) @endforeach
@stop