@extends('layouts.admin') @section('content')

Edit Badge: {{ $badge->name }}

Back to Badges
@csrf @method('PUT')
{{ old('description', $badge->description) }}
@if($badge->icon)

Current Icon:

{{ $badge->name }} icon
@else @php $iconPath = 'images/badges/' . strtolower(str_replace(' ', '_', $badge->name)) . '_badge.png'; $fullPath = storage_path('app/public/' . $iconPath); @endphp @if(file_exists($fullPath))

Current Icon:

{{ $badge->name }} icon
@endif @endif
Cancel Update Badge
@push('scripts') @endpush @endsection