@extends('admin.layout.app') @section('title','Add Depreciation Asset') @push('headerscript') @endpush @section('content')

Add Depreciation Asset

{!! Form::open(['route'=>array('depreciation-asset.store'), 'onsubmit'=>'BtnSubmit.disabled = true', 'method' => 'post']) !!}
{{$errors->first('voucher_no')}}
{{$errors->first('voucher_date')}}
{{$errors->first('invoice_no')}}
{{$errors->first('hitting_date')}}
{!! Form::select("branch_id", \App\Http\Helpers\Helper::getBranchData(), old("branch_id"), ['class'=>'form-control select2' ,'id' => 'branch_id','required'=>'required'] ) !!}
Account Name* Value Of Asset* % Depreciation* No Of Months* Per Month Amount Deduct
{!! Form::select("customer_id[]", [''=>'Select']+$customers, old("customer_id"), ['class'=>'form-control select2', 'required', 'id'=>'customer_id10'] ) !!}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush