@extends('layouts/default') {{-- Page title --}} @section('title') Bulk Edit @parent @stop @section('header_right') {{ trans('general.back') }} @stop {{-- Page content --}} @section('content')
{{ csrf_field() }}
{{ Form::select('manufacturer_id', $manufacturer_list , Input::old('manufacturer_id', 'NC'), array('class'=>'select2', 'style'=>'width:350px')) }} {!! $errors->first('manufacturer_id', ' :message') !!}
{{ Form::select('category_id', $category_list , Input::old('category_id', 'NC'), array('class'=>'select2', 'style'=>'width:350px')) }} {!! $errors->first('category_id', ' :message') !!}
{{ Form::select('fieldset_id', $fieldset_list , Input::old('fieldset_id', 'NC'), array('class'=>'select2', 'style'=>'width:350px')) }} {!! $errors->first('fieldset_id', ' :message') !!}
{{ Form::select('depreciation_id', $depreciation_list , Input::old('depreciation_id', 'NC'), array('class'=>'select2', 'style'=>'width:350px')) }} {!! $errors->first('depreciation_id', ' :message') !!}
@foreach ($models as $model) @endforeach
@stop