@extends('layouts.manage') @section('content') @if ($message = Session::get('success')) @endif
@csrf @method('PUT')

Activate/Modify Achievement


@if($achievements->isEmpty())

There are currently no Achievements available.
Please click here to add the achievements.

@endif
@foreach ($achievements as $key => $achievement)
@if(!empty($achievement->achievement_logo_selected)) @endif
{{ $achievement->achievement_name ?? '' }}
Earned when
{{ $achievement->achievement_description ?? '' }}
@endforeach
@stop