@php
$setings = \App\Models\Setting::first(['favicon']);
@endphp
{{ env("APP_NAME") }} | @yield('title')
@if ($setings?->favicon)
@endif
@yield('styles')
@include('partials.header')
@yield('content')
@if (session('success'))
@endif
@if (session('error'))
@endif
@if ($errors->any())
@endif
@include('partials.footer')
@yield('scripts')