@if(\Auth::user()->type == 'company')
{{ Form::label('users', __('Users'),['class'=>'form-label'])}}
@endif
@if(\Auth::user()->type == 'company')
{{ Form::label('start_date', __('Planned Start Date'),['class'=>'form-label'])}}
{{ Form::date('start_date', null, array('class' => 'form-control month-btn start_date')) }}
@endif
@if(\Auth::user()->type == 'company')
{{ Form::label('end_date', __('Planned End Date'),['class'=>'form-label'])}}
@else
{{ Form::label('end_date', __('Planned Start Date'),['class'=>'form-label'])}}
@endif
{{ Form::date('end_date', date('Y-m-d') , array('class' => 'form-control month-btn end_date')) }}