* @package execution * @link https://www.zentao.net */ namespace zin; to::header( span ( set::className('text-md font-bold'), $lang->execution->fixFirst ), span ( setClass('flex gap-x-2 mr-3'), $lang->execution->totalEstimate, span ( setClass('label secondary-pale rounded-full'), $execution->totalEstimate . $lang->execution->workHour ) ) ); formPanel ( set::submitBtnText($lang->save), set::formClass('border-0'), formGroup ( set::label($execution->begin), set::placeholder($lang->execution->placeholder->totalLeft), inputGroup ( input ( set::name('estimate'), set::value(!empty($firstBurn->estimate) ? $firstBurn->estimate : (!empty($firstBurn->left) ? $firstBurn->left : '')), set::placeholder($lang->execution->placeholder->totalLeft) ), checkbox ( set::name('withLeft'), set::value(1), set::checked(true), set::text($lang->execution->fixFirstWithLeft), set::rootClass('ml-4 w-1/3 items-center') ) ) ) );