@php /** @var \App\Models\ApiCustomer|null $panelCustomer */ $panelCustomer = auth('api_customer')->user(); @endphp @yield('title', t('apipanel-title')) — Astro Bilge API {{-- Ürün kartlarındaki ikonlar için (ana site ile aynı sürüm). --}} @stack('styles')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @yield('content')