@extends('backend.master') @section('content')
Edit: {{ $row->name }}
@csrf @method('PUT') @if ($errors->any())
    @foreach ($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
{{--
āĻĢāĻžāχāϞ āĻĻāĻŋāϞ⧇ āĻāϟāĻŋ āχāĻ—āύ⧋āϰ āĻšāĻŦ⧇āĨ¤
--}}
@php $p = $row->flag_path; $isStored = $p && \Illuminate\Support\Facades\Storage::disk('public')->exists($p); $isUrl = $p && \Illuminate\Support\Str::startsWith($p,['http://','https://']); @endphp @if($isStored) current @elseif($isUrl) current @else preview @endif
Back
@endsection