@extends('layouts.admin') @section('heading', 'Shop Profile') @section('subheading', 'Update your shop name and logo — shown in your sidebar and dashboard.') @section('content') @include('partials.master-tabs') @if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
{{ $errors->first() }}
@endif
@if($shop->logo) {{ $shop->name }} @else

No custom logo yet — the eTailorz logo is shown by default.

@endif
@csrf
@endsection