@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')
Edit Exercise
@if(session()->has('message'))
{{ session()->get('message') }}
@elseif(session()->has('error'))
{{ session()->get('error') }}
@endif
@csrf
Thumbnail
Set the category thumbnail image. Only *.png, *.jpg and *.jpeg image files are accepted
Status
Published
Inactive
Set the exercise status.
Workout Plan
@foreach($workout_plan as $wp)
id == $exercise->id_workout_plans) selected @endif @endif> {{$wp->title}}
@endforeach
Set the workout plan.
Exercise Week
id_weeks == '1') selected @endif> Week 01
id_weeks == '2') selected @endif> Week 02
id_weeks == '3') selected @endif> Week 03
id_weeks == '4') selected @endif> Week 04
Set the exercise week.
Exercise Day
@if($exercise->id_workout_types == 1)
id_days == '1') selected @endif> Day 01
id_days == '2') selected @endif> Day 02
id_days == '3') selected @endif> Day 03
id_days == '4') selected @endif> Day 04
id_days == '5') selected @endif> Day 05
@else
id_days == '6') selected @endif> Day 06
id_days == '7') selected @endif> Day 07
@endif
Set the exercise day.
General
@if($exercise->id_workout_types == 1)
Exercise Number
A exercise number is required and recommended to be unique.
Exercise Title
A exercise title is required and recommended to be unique.
Description
{!!$exercise->description!!}
A exercise description is required and recommended to be unique.
Duration
Duration is required.
Reps (Optional)
Reps are optional.
Sets (Optional)
Sets are optional.
Notes
Note is required.
Exercise Video
@else
Cardio Description
{!!$exercise->description!!}
@endif
Update Exercise
@include('partials.footer')
@include('global.footer-links')