@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_choice('admin/hardware/form.bulk_update_warn', count($assets), ['asset_count' => count($assets)]) }}
{{ csrf_field() }}
{!! $errors->first('purchase_date', ' :message') !!}
{!! $errors->first('expected_checkin', '') !!}
{{ Form::select('status_id', $statuslabel_list , old('status_id'), array('class'=>'select2', 'style'=>'width:350px', 'aria-label'=>'status_id')) }} {!! $errors->first('status_id', '') !!}
@include ('partials.forms.edit.model-select', ['translated_name' => trans('admin/hardware/form.model'), 'fieldname' => 'model_id']) @include ('partials.forms.edit.location-select', ['translated_name' => trans('admin/hardware/form.default_location'), 'fieldname' => 'rtd_location_id'])

{{ $snipeSettings->default_currency }} {!! $errors->first('purchase_cost', '') !!}
@include ('partials.forms.edit.supplier-select', ['translated_name' => trans('general.supplier'), 'fieldname' => 'supplier_id']) @include ('partials.forms.edit.company-select', ['translated_name' => trans('general.company'), 'fieldname' => 'company_id'])
{!! $errors->first('order_number', '') !!}
{{ trans('admin/hardware/form.months') }} {!! $errors->first('warranty_months', '') !!}
{{ trans('admin/hardware/form.requestable') }}
@foreach ($assets as $key => $value) @endforeach
@stop