{!! Form::open([
'url' => action([\Modules\Gym\Http\Controllers\MemberController::class, 'store_health'], ['id' => $member->id]),
'method' => 'post',
'id' => 'create_health_tracking',
]) !!}
{!! Form::label('date', __('lang_v1.date') . ':') !!}
{!! Form::text('date', null, [
'class' => 'form-control health_date',
'placeholder' => __('lang_v1.date'),
'readonly',
'required',
]) !!}
{!! Form::label('neck', __('gym::lang.neck') . ':') !!}
{!! Form::number('neck', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('left_arm', __('gym::lang.left_arm') . ':') !!}
{!! Form::number('left_arm', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('right_arm', __('gym::lang.right_arm') . ':') !!}
{!! Form::number('right_arm', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('chest', __('gym::lang.chest') . ':') !!}
{!! Form::number('chest', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('upper_waist', __('gym::lang.upper_waist') . ':') !!}
{!! Form::number('upper_waist', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('lower_waist', __('gym::lang.lower_waist') . ':') !!}
{!! Form::number('lower_waist', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('hips', __('gym::lang.hips') . ':') !!}
{!! Form::number('hips', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('left_thigh', __('gym::lang.left_thigh') . ':') !!}
{!! Form::number('left_thigh', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('right_thigh', __('gym::lang.right_thigh') . ':') !!}
{!! Form::number('right_thigh', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('calf', __('gym::lang.calf') . ':') !!}
{!! Form::number('calf', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('height', __('gym::lang.height') . ':*') !!}
{!! Form::number('height', null, ['class' => 'form-control', 'required', 'step' => '0.1']) !!}
{!! Form::label('weight', __('gym::lang.weight') . ':*') !!}
{!! Form::number('weight', null, ['class' => 'form-control', 'required', 'step' => '0.1']) !!}
{!! Form::label('shoulders', __('gym::lang.shoulders') . ':') !!}
{!! Form::number('shoulders', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('body_fat_percentage', __('gym::lang.body_fat_percentage') . ':') !!}
{!! Form::number('body_fat_percentage', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('visceral_fat', __('gym::lang.visceral_fat') . ':') !!}
{!! Form::number('visceral_fat', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('subcutaneous_fat', __('gym::lang.subcutaneous_fat') . ':') !!}
{!! Form::number('subcutaneous_fat', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('bmi', __('gym::lang.bmi') . ':') !!}
{!! Form::number('bmi', null, ['class' => 'form-control', 'step' => '0.01']) !!}
{!! Form::label('muscle_mass_percentage', __('gym::lang.muscle_mass_percentage') . ':') !!}
{!! Form::number('muscle_mass_percentage', null, ['class' => 'form-control', 'step' => '0.01']) !!}