@extends('backend.master') @section('content')
Edit: {{ $cat->name }}
@csrf @method('PUT') @if ($errors->any())
    @foreach ($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
Basics
Icon
ফাইল দিলে এটি ইগনোর হবে।
@php $icon = $cat->icon; $isStored = $icon && \Illuminate\Support\Facades\Storage::disk('public')->exists($icon); @endphp @if($isStored) current @elseif($icon && \Illuminate\Support\Str::startsWith($icon,['http://','https://'])) current @else preview @endif
Recommended: 256×256 PNG/JPG/WebP/SVG
Back
@endsection