@if(session()->has('message'))
@endif
@if(session()->has('error'))
@endif
{{ trans('labels.Successlabel') }}
{{ session()->get('message') }}{{ trans('labels.WarningLabel') }}
{{ session()->get('error') }}
@if(in_array("Add",$Opportunities ))
{!! Form::open(array('url' =>'admin/create-opportunities-data', 'method'=>'post', 'class' => 'form-horizontal', 'id' => 'addNewOpportunities', 'enctype'=>'multipart/form-data')) !!}
{!! Form::close() !!}
@else
Customer Information
{!! Form::text('accounts_name', $result['accountsData']->name, array('class'=>'form-control', 'id'=>'accounts_name', 'readonly'=>'readonly')) !!}
{!! Form::text('customers_firstname', '', array('class'=>'form-control', 'id'=>'customers_firstname', 'required'=>'required')) !!}
{!! Form::text('customers_lastname', '', array('class'=>'form-control', 'id'=>'customers_lastname', 'required'=>'required')) !!}
{!! Form::text('customers_email_address', '', array('class'=>'form-control', 'id'=>'customers_email_address')) !!}
{!! Form::text('customers_telephone', '', array('class'=>'form-control', 'id'=>'customers_telephone', 'required'=>'required', 'maxlength'=>'12', 'minlength'=>'9')) !!}
{!! Form::text('alternate_mobile', '', array('class'=>'form-control', 'id'=>'alternate_mobile', 'maxlength'=>'12', 'minlength'=>'9')) !!}
Other Information
{!! Form::text('source_of_call', '', array('class'=>'form-control', 'id'=>'source_of_call')) !!}
{!! Form::textarea('comments', '', array('class'=>'form-control', 'id'=>'comments', 'rows'=>'3', 'cols'=>'10')) !!}
Please contact with SuperAdmin
@endif