@extends('layout.admin') @section('head') @extends('layout.header') @section('header_title', 'Business Setting') @endsection @section('content')

Business Setting

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Business Setting

@csrf
@if(!empty($setting?->business_logo))
Business Logo
@endif
@endsection @section('script') @endsection