{{ Form::open(['url' => 'projects', 'method' => 'post','enctype' => 'multipart/form-data', 'id' => 'create_project_form', 'class' => 'create_project_form']) }}

{{ __('Project Details') }}

{{ Form::label('project_name', __('Project Name'), ['class' => 'form-label']) }}* {{ Form::text('project_name', null, ['class' => 'form-control project_name','required'=>'required']) }} Project Name Already Exist!
{{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', '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))}}
{{Form::label('latitude',__('Latitude'),array('class'=>'form-label')) }}* {{Form::text('latitude',null,array('class'=>'form-control','id'=>'latitude','required'=>'required'))}}
{{Form::label('longitude',__('Longitude'),array('class'=>'form-label')) }}* {{Form::text('longitude',null,array('class'=>'form-control','id'=>'longitude','required'=>'required'))}}

{{ __('Project Members') }}

{{ Form::label('client', __('Client'),['class'=>'form-label']) }}* {!! Form::select('client', $clients, null,array('class' => 'form-control','required'=>'required')) !!}
{{ Form::label('Users', __('Users'), ['class' => 'form-label']) }}*
{!! Form::select('reportto[]', $repoter, null,array('id' => 'reportto','class' => 'form-control chosen-select get_reportto','multiple'=>'true','required'=>'required')) !!}
{{ Form::label('start_date', __('Start Date'), ['class' => 'form-label']) }}* {{ Form::date('start_date', null, ['class' => 'form-control','required'=>'required']) }}
{{ Form::label('end_date', __('End Date'), ['class' => 'form-label']) }}* {{ Form::date('end_date', null, ['class' => 'form-control','required'=>'required']) }}
{{ Form::label('estimated_days', __('Estimated Days'),['class' => 'form-label']) }} {{ Form::text('estimated_days', null, ['class' => 'form-control estimated_days' ,'readonly'=>true]) }}
{{ Form::label('report_time', __('Report Time'), ['class' => 'form-label']) }}* {{ Form::time('report_time', null, ['class' => 'form-control', 'rows' => '4', 'cols' => '50','required'=>'required']) }}
{{ Form::label('project_image', __('Project Image'), ['class' => 'form-label']) }}

{{ __('Project Holidays') }}

{{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')) !!}
{{Form::label('holidays',__('holiday_status'),['class'=>'form-label'])}}

{{Form::label('holiday',__('Add Project Holidays'),['class'=>'form-label'])}}
{{__('Date')}} {{__('Holiday Name')}}

{{ __('Project Import or Manual') }}

@if($setting['company_type']==2) {{ Form::label('file_type', __('Project File Type'), ['class' => 'form-label']) }} * @endif
{{ Form::label('file_type', __('Microsoft Project File Type'), ['class' => 'form-label mp_file_lable','style'=>'display:none;']) }} {{ Form::label('file_type', __('Primavera File Type'), ['class' => 'form-label prima_file_label','style'=>'display:none;']) }}
{{--
{{ Form::label('boq', __('Upload a BOQ File Here'), ['class' => 'form-label boq_file']) }}
--}}
{{Form::close()}}