@extends('layout.main') @section('content')

New Deal

@include('includes.errors') @include('includes.success')

Close


{{Form::select('DealType',Deal::$TypeDropDown, 'Revenue',array("class"=>"select2"))}}
{{Form::select('AccountID',$Accounts,'',array("class"=>"select2"))}}
{{Form::select('CodedeckID',$codedecklist,'',array("class"=>"select2"))}}
{{Form::select('Status',Deal::$StatusDropDown, 'Active',array("class"=>"select2"))}}
{{ Form::text('StartDate', '', array("class"=>"form-control small-date-input datepicker", 'id' => 'StartDate', "data-date-format"=>"yyyy-mm-dd" ,"data-enddate"=>date('Y-m-d'))) }}
{{ Form::text('EndDate', '', array("class"=>"form-control small-date-input datepicker", 'id' => 'EndDate',"data-date-format"=>"yyyy-mm-dd" ,"data-enddate"=>date('Y-m-d'))) }}
@include('includes.ajax_submit_script', array('formID'=>'deal-from' , 'url' => 'dealmanagement/store','update_url'=>'dealmanagement/update/{id}' )) @stop @section('footer_ext') @parent @stop