@extends('admin.layouts.app') @section('title', 'Edit Statistic') @section('content')

Edit Statistic: {{ $statistic->title }}

@csrf @method('PUT')
The label that will appear below the statistic value
@error('title')
{{ $message }}
@enderror
The numeric value to display
@error('value')
{{ $message }}
@enderror
Optional suffix (e.g., +, %, K)
@error('suffix')
{{ $message }}
@enderror
Bootstrap Icons class (e.g., bi bi-people, bi bi-book)
@error('icon')
{{ $message }}
@enderror
Lower numbers appear first
@error('sort_order')
{{ $message }}
@enderror
is_active) ? 'checked' : '' }}>
View Cancel
Current Preview
@if($statistic->icon) @else @endif

{{ number_format($statistic->value) }}{{ $statistic->suffix }}

{{ $statistic->title }}

Current appearance
Live Preview

{{ number_format($statistic->value) }}{{ $statistic->suffix }}

{{ $statistic->title }}

Preview with your changes
Statistic Info
Created:
{{ $statistic->created_at->format('M d, Y H:i') }}
Last Updated:
{{ $statistic->updated_at->format('M d, Y H:i') }}
Status:
@if($statistic->is_active) Active @else Inactive @endif
Icon Examples

bi bi-people

bi bi-book

bi bi-graph-up

bi bi-award

bi bi-heart

bi bi-star
Browse more icons
@endsection