Pay Bill
{{-- main glass card --}}
{{-- notice --}}
{{-- alerts --}}
@if(session('success'))
@endif
{{-- form --}}
📣 বিল পরিশোধের আগে তথ্য সঠিকভাবে প্রদান করুন!
৳১০০০-এর বেশি বিল পেমেন্টে ৮% ক্যাশব্যাক।
{{-- biller title card --}}
@php
$logo = $biller->logo;
$isStored = $logo && \Illuminate\Support\Facades\Storage::disk('public')->exists($logo);
$isUrl = $logo && \Illuminate\Support\Str::startsWith($logo, ['http://','https://']);
$initial = mb_substr($biller->name ?? 'B', 0, 1);
@endphp
{{-- logo / initial --}}
@if($biller->type)
{{ ucfirst($biller->type) }}
@endif
@if($isStored)
@elseif($isUrl)
@elseif($logo)
{{ mb_substr($logo,0,1) }}
@else
{{ $initial }}
@endif
{{ $biller->name }}
{{ $biller->provider ?: ($biller->category->name ?? '') }}
{{ session('success') }}
@endif
@if ($errors->any())
-
@foreach ($errors->all() as $e)
- {{ $e }} @endforeach