@php $adminLogoUrl = $admin->logo_path ? asset('storage/' . $admin->logo_path) : asset('images/bzmtch_logo.png'); $adminLogoText = $admin->logo_text ?: 'BZMTCH POS'; @endphp
ADMIN MANAGEMENT
@php $avatar = $admin->profile_picture ? asset('storage/' . $admin->profile_picture) : $adminLogoUrl; @endphp
@if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif

Settings

| >

Logo & Logo Text

{{-- Settings panel: layout like the given image - nav bar left, content right --}}

Logo & Logo Text

Customize the logo and logo text displayed in the admin interface and all cashier POS accounts you created. Changes apply to your admin sidebar and your cashiers' POS screens.

@csrf @method('PUT')
Logo

JPEG, PNG, GIF or WebP. Max 2MB. Shown in admin sidebar and cashier POS.

Text displayed beside the logo in admin and cashier POS. Leave blank to use default "BZMTCH POS".

Cancel
@include('admin.partials.inbox')