@extends('backend/layouts/default') {{-- Page title --}} @section('title') @if ($model->id) Update Model @else Create Model @endif @parent @stop {{-- Page content --}} @section('content')
{{ $errors->first('name', ':message') }}
{{ $errors->first('modelno', ':message') }}
{{ Form::select('depreciation_id', $depreciation_list , Input::old('depreciation_id', $model->depreciation_id), array('class'=>'select2', 'style'=>'width:250px')) }} {{ $errors->first('depreciation_id', ':message') }}
@lang('general.cancel')
@stop