@extends('layouts.app') @section('title','পে-বিল') @push('styles') {{-- Same fonts & blob animation --}} @endpush @section('content')
{{-- animated blobs --}}
{{-- top nav --}}
Pay Bill
{{-- main glass card --}}
{{-- notice --}}
📣 বিল পরিশোধের আগে তথ্য সঠিকভাবে প্রদান করুন! ৳১০০০-এর বেশি বিল পেমেন্টে ৮% ক্যাশব্যাক
{{-- 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($isStored) logo @elseif($isUrl) logo @elseif($logo) {{ mb_substr($logo,0,1) }} @else {{ $initial }} @endif
{{ $biller->name }}
{{ $biller->provider ?: ($biller->category->name ?? '') }}
@if($biller->type) {{ ucfirst($biller->type) }} @endif
{{-- alerts --}} @if(session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif {{-- form --}}
@csrf
{{-- account name --}} {{-- account no --}} {{-- amount --}} {{-- reference --}} {{-- 🔐 PIN (same vibe) --}} {{-- cashback calc --}}
ক্যালকুলেশন
অ্যামাউন্ট
0
আনুমানিক ক্যাশব্যাক
0
(৳১০০০-এর বেশি হলে ৮%)
{{-- submit --}}
{{-- live cashback calc --}} @endsection