@extends('backend/layouts/default') {{-- Page title --}} @section('title') @if ($model->id) Update Model @else Create Model @endif @parent @stop {{-- Page content --}} @section('content')
Back

@if ($model->id) Update Model @else Create New Model @endif

{{ $errors->first('name', ' :message') }}
{{ $errors->first('modelno', ' :message') }}
{{ Form::select('manufacturer_id', $manufacturer_list , Input::old('manufacturer_id', $model->manufacturer_id), array('class'=>'select2', 'style'=>'width:350px')) }} {{ $errors->first('manufacturer_id', ' :message') }}
{{ Form::select('depreciation_id', $depreciation_list , Input::old('depreciation_id', $model->depreciation_id), array('class'=>'select2', 'style'=>'width:350px')) }} {{ $errors->first('depreciation_id', ' :message') }}
{{ Form::select('category_id', $category_list , Input::old('category_id', $model->category_id), array('class'=>'select2', 'style'=>'width:350px')) }} {{ $errors->first('category_id', ' :message') }}
Cancel
@stop