@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')
Achievements
@if (session()->has('message'))
{{ session()->get('message') }}
@elseif(session()->has('error'))
{{ session()->get('error') }}
@endif
Add Achievements Goals
@csrf
Completion of Workout
Streak
Steps/Distance
{{-- image Start --}}
Avatar
Allowed file types: png, jpg, jpeg.
{{-- image End --}} {{-- Goal Name Start --}}
Goal name
@if ($errors->has('goal_name'))
{{ $errors->first('goal_name') }}
@endif
Goal description
@if ($errors->has('goal_description'))
{{ $errors->first('goal_description') }}
@endif {{-- Goal Name End --}} {{-- Number Of Workouts Start --}}
Number of Workout
{{-- Number Of Workouts End --}} {{-- checkbox Start --}} {{--
Number of Days
Associated with level
Associated with category
--}} {{-- checkbox End --}} {{-- Number of days Input Start --}} {{--
Number of Days
--}} {{-- Number of days Input End --}} {{-- Associated with category/level Input Start --}} {{--
Level
Beginner
Intermediate
Advance
Associated with category/level
@foreach ($types as $category)
{{ $category['type'] }}
@endforeach
--}}
{{-- Associated with category/level Input End --}} {{-- streak-form Start --}}
Number of Days in a row
{{-- checkbox Start --}} {{--
Can have gap
--}} {{-- checkbox End --}} {{-- Gap days Input Start --}} {{--
Gap Days
--}} {{-- Number of days Input End --}}
{{-- streak-form End --}} {{-- Steps-form Start --}}
UOM
Distance
Steps
Steps
Distance
{{-- Steps-form End --}}
Submit
@include('partials.footer')
@include('global.footer-links')