{!! Form::open(['url' => action([\Modules\Essentials\Http\Controllers\PayrollController::class, 'create']), 'method' => 'get', 'id' => 'add_payroll_step1' ]) !!}
{!! Form::label('primary_work_location', __( 'business.location' ) . ':*') !!} {!! Form::select('primary_work_location', $locations, null, ['class' => 'form-control select2', 'style' => 'width: 100%;', 'id' => 'primary_work_location']); !!}
{!! Form::label('employee_ids', __( 'essentials::lang.employee' ) . ':*') !!} {!! Form::select('employee_ids[]', $employees, null, ['class' => 'form-control select2', 'required', 'style' => 'width: 100%;', 'multiple', 'id' => 'employee_ids']); !!}
{!! Form::label('month_year', __( 'essentials::lang.month_year' ) . ':*') !!}
{!! Form::text('month_year', null, ['class' => 'form-control', 'placeholder' => __( 'essentials::lang.month_year' ), 'required', 'readonly' ]); !!}
{!! Form::close() !!}