{{ Form::open(['url' => 'projects', 'method' => 'post','enctype' => 'multipart/form-data',
'id' => 'create_project_forms', 'class' => 'create_project_forms']) }}
{{ Form::label('project_name', __('Project Name'), ['class' => 'form-label']) }}
*
{{ Form::text('project_name', null, ['class' => 'form-control project_name',
'id'=>'project_name','required'=>'required','placeholder'=>'Enter Project Name']) }}
Project Name Already Exist!
{{ Form::label('client', __('Client'),['class'=>'form-label']) }}
{{-- * --}}
{!! Form::select('client', $clients, null,array('class' => 'form-control')) !!}
{{ Form::label('Users', __('Manager'), ['class' => 'form-label']) }}
{{-- *
--}}
{!! Form::select('reportto', $repoter, null,array('id' => 'reportto',
'class' => 'form-control get_reportto')) !!}
{{Form::label('country',__('Country'),array('class'=>'form-label')) }}
*
{{Form::label('state',__('State'),array('class'=>'form-label')) }}
*
{{Form::label('city',__('City'),array('class'=>'form-label')) }}
*
{{Form::text('city',null,array('class'=>'form-control',
'required'=>'required','placeholder'=>'Enter City',
'oninput'=>'alphaOnly(this)'))}}
{{Form::label('zip',__('Zip Code'),array('class'=>'form-label')) }}
*
{{Form::number('zip',null,array('class'=>'form-control','id'=>'zip',
'required'=>'required', 'minlength'=>5,'placeholder'=>'Enter zip code'))}}
{{Form::label('latitude',__('Latitude'),array('class'=>'form-label')) }}
{{-- * --}}
{{Form::text('latitude',null,array('class'=>'form-control','id'=>'latitude',
'placeholder'=>'Enter latitude'))}}
{{Form::label('longitude',__('Longitude'),array('class'=>'form-label')) }}
{{-- * --}}
{{Form::text('longitude',null,array('class'=>'form-control',
'id'=>'longitude','placeholder'=>'Enter longitude'))}}
{!! Form::textarea('otheraddress', null, ['class'=>'form-control','rows'=>'6',
'placeholder'=>'Other Address Details']) !!}
{{ Form::label('start_date', __('Start Date'), ['class' => 'form-label']) }}
*
{{ Form::date('start_date', null, ['class' => 'form-control',
'required'=>'required','placeholder'=>'Enter start date']) }}
{{ Form::label('end_date', __('End Date'), ['class' => 'form-label']) }}
*
{{ Form::date('end_date', null, ['class' => 'form-control',
'required'=>'required','placeholder'=>'Enter end date']) }}
{{ Form::label('estimated_days', __('Estimated Days'),['class' => 'form-label']) }}
{{ Form::text('estimated_days', null,
['class' => 'form-control estimated_days' ,'readonly'=>true,
'placeholder'=>'Enter estimated days']) }}
{{Form::label('non_working_days',__('non_working_days'),['class'=>'form-label'])}}
@php
$non_working_days = array(
'1' => 'Monday',
'2' => 'Tuesday',
'3' => 'Wednesday',
'4' => 'Thursday',
'5' => 'Friday',
'6' => 'Saturday',
'0' => 'Sunday'
);
@endphp
{!! Form::select('non_working_days[]', $non_working_days, null,
array('id' => 'non_working_days','class' => 'form-control
chosen-select get_non_working_days','multiple'=>'true', 'data-placeholder'=>'Select non working days'
))
!!}
{{--
This field is required --}}
{{ Form::label('report_time', __('Report Time'), ['class' => 'form-label']) }}
*
@php
$lookahead_subscription = Auth::user()->checkSubscriptionCount('lookahead',1);
@endphp
@if($lookahead_subscription > 0)
@endif
@php
$get_subscription = Auth::user()->checkSubscriptionCount('contract_management',1);
@endphp
{{Form::close()}}