@extends('layouts.app') @section('title') Add Development Charges @stop @section('breadcrumb') @stop @section('css') @stop @section('content') @php $size= ''; if($projectType->id == \App\ProjectType::society){ $size= \App\ProjectType::society_size; } else { $size= \App\ProjectType::high_rise_size; } @endphps
{{ csrf_field() }}
@if ($errors->any())

Errors

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

Add Development Charges

Note: All * fields are mandatory


Select Unit Type


@if ($errors->has('unit_number')) {{ $errors->first('unit_number') }} @endif
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
@if ($errors->has('size')) {{ $errors->first('size') }} @endif
@if ($errors->has('total_price')) {{ $errors->first('total_price') }} @endif
@if ($errors->has('category')) {{ $errors->first('category') }} @endif
@if ($errors->has('net_amount')) {{ $errors->first('net_amount') }} @endif

Payment Scheduler


Full Payment
Custom
@if ($errors->has('schedule_type')) {{ $errors->first('schedule_type') }} @endif
{{-- 3rd row --}}
   
@stop @section('js') @stop