@extends('layouts.buddy-screens') @section('content')

Dashboard/ Post a Deal

@csrf
Post a Deal
{{-- default image --}}
user-avatar

Allowed JPG, GIF or PNG. Max size of 800K

@if($errors->has('deal_image'))
{{ $errors->first('deal_image') }}
@endif
@if($errors->has('deal_name'))
{{ $errors->first('deal_name') }}
@endif
@if($errors->has('actual_name'))
{{ $errors->first('actual_name') }}
@endif
@if($errors->has('location_of_business'))
{{ $errors->first('location_of_business') }}
@endif

@if($errors->has('nature_deal_id'))
{{ $errors->first('nature_deal_id') }}
@endif

@if($errors->has('industry_sector_id'))
{{ $errors->first('industry_sector_id') }}
@endif
@if($errors->has('deal_size_id'))
{{ $errors->first('deal_size_id') }}
@endif
@if($errors->has('short_description'))
{{ $errors->first('short_description') }}
@endif
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if($errors->has('nature_of_funding'))
{{ $errors->first('nature_of_funding') }}
@endif
@if($errors->has('signed_mandate_available'))
{{ $errors->first('signed_mandate_available') }}
@endif
@if($errors->has('signed_mandate_available_doc'))
{{ $errors->first('signed_mandate_available_doc') }}
@endif
@if($errors->has('supporting_documents'))
{{ $errors->first('supporting_documents') }}
@endif

Please upload deal supporting document. E.g. Project Report, Introductory Profile or Information Memorandum.

@endsection