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