@extends('backend.master') @section('content')
Edit Banner #{{ $row->id }}
@csrf @method('PUT') @if ($errors->any())
    @foreach ($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
{{--
ফাইল আপলোড দিলে এটি ইগনোর হবে।
--}}
@php $p = $row->image_path; $isStored = $p && \Illuminate\Support\Facades\Storage::disk('public')->exists($p); $isUrl = $p && \Illuminate\Support\Str::startsWith($p,['http://','https://']); $src = $isStored ? asset('storage/'.$p) : ($isUrl ? $p : null); @endphp @if($src) current @else preview @endif
Back
@endsection