@extends('layouts.app') @section('title') Add New Buy Back @stop @section('breadcrumb') @stop @section('content')
@if($errors->any())

Errors

    {!! implode('', $errors->all('
  • :message
  • ')) !!}
@endif

Buy Back Payment Form :

{{csrf_field()}}
@if ($errors->has('bb_requ_form')) {{ $errors->first('bb_requ_form') }} @endif
@if ($errors->has('ref_no')) {{ $errors->first('ref_no') }} @endif
@if ($errors->has('date')) {{ $errors->first('date') }} @endif
@if ($errors->has('party_code')) {{ $errors->first('party_code') }} @endif
@if ($errors->has('cus_name')) {{ $errors->first('cus_name') }} @endif
@if ($errors->has('inventory_id')) {{ $errors->first('inventory_id') }} @endif
@if ($errors->has('floor')) {{ $errors->first('floor') }} @endif
@if ($errors->has('area')) {{ $errors->first('area') }} @endif
@if ($errors->has('total_amount_invested')) {{ $errors->first('total_amount_invested') }} @endif
@if ($errors->has('total_amount_received')) {{ $errors->first('total_amount_received') }} @endif
@if ($errors->has('if_merging_then_value_of_merging')) {{ $errors->first('if_merging_then_value_of_merging') }} @endif
@if ($errors->has('buy_back_option')) {{ $errors->first('buy_back_option') }} @endif
@if ($errors->has('payment_mode')) {{ $errors->first('payment_mode') }} @endif
@if ($errors->has('buy_back_value_requested_by_client')) {{ $errors->first('buy_back_value_requested_by_client') }} @endif
@if ($errors->has('sales_agents')) {{ $errors->first('sales_agents') }} @endif
Yes :
No:
@if ($errors->has('merging_sold')) {{ $errors->first('merging_sold') }} @endif
@if ($errors->has('total_amount')) {{ $errors->first('total_amount') }} @endif
@if ($errors->has('payee_name')) {{ $errors->first('payee_name') }} @endif
@if ($errors->has('payee_cnic')) {{ $errors->first('payee_cnic') }} @endif
@if ($errors->has('payee_address')) {{ $errors->first('payee_address') }} @endif
 
@stop @section('js') @stop