@extends('admin.layout.app') @section('title','Edit Purchase Return') @push('headerscript') @endpush @section('content')

Edit Purchase Return

{!! Form::open(['route'=>array('purchase-return.update', $purchase_return->id), 'onsubmit'=>'BtnSubmit.disabled = true', 'method' => 'put']) !!}
{{$errors->first('voucher_no')}}
{{$errors->first('voucher_date')}}
{{$errors->first('invoice_no')}}
{{$errors->first('supplier_invoice_no')}}
{{$errors->first('supplier_id')}}
{{$errors->first('voucher_description')}}
@foreach($purchase_return->purchaseReturnDetails as $purchase_return_detail) @endforeach
Job Card No. Part No.* Applicable Purchase Qty. Return Qty.* Cost Price* Vat Discount Amount*

{{$purchase_return_detail->max_quantity}}

{{$errors->first('gross_amount')}}
{{$errors->first('vat_amount')}}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush