@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')
Edit Workout Bundle
@csrf
Image
Set the category thumbnail image. Only *.png, *.jpg and *.jpeg image files are accepted
Status
status == 1 ? 'selected' : ''}}>Published
status == 0 ? 'selected' : ''}}>Inactive
Set the workout bundle status.
Workout Type
@foreach($categories as $category)
title == $bundle->category->title) selected @endif @endif> {{$category->title}}
@endforeach
Set the workout bundle category.
General
Workout Bundle Title
A workout bundle title is required and recommended to be unique.
Description
{{$bundle->description}}
A workout bundle description is required and recommended to be unique.
Price
This will show on the app
@for ($i = 39.99; $i <= 249.99; $i += 10)
price, 2) == number_format($i, 2) ? 'selected' : '' }}>${{ number_format($i, 2) }}
@endfor
Actual Price
@for ($i = 39.99; $i <= 249.99; $i += 10)
actual_price, 2) == number_format($i, 2) ? 'selected' : '' }}>${{ number_format($i, 2) }}
@endfor
Update Bundle
@include('partials.footer')
@include('global.footer-links')