How to change default layout in livewire2 app?

I made in Laravel8, livewire2 3 layouts :
resources/views/layouts/admin.blade.php, resources/views/layouts/frontpage.blade.php,
resources/views/layouts/personal.blade.php and removed original layouts.app.blade.php.

But opening dashboard page I got error :

View [layouts.app] not found. (View: /resources/views/dashboard.blade.php)

Which has default content :

<x-app-layout>
    <x-slot name="header">
        <h2 class="font-semibold text-xl text-gray-800 leading-tight">
            {{ __('Dashboard') }}
        </h2>
    </x-slot>

    <div class="py-12">
        <div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
            <div class="bg-white overflow-hidden shadow-xl sm:rounded-lg">
                <x-jet-welcome />
            </div>
        </div>
    </div>
</x-app-layout>
  1. Can I specify layout in file above ?

  2. Here https://laravel-livewire.com/docs/2.x/rendering-components#page-components I read :

If you want to specify a default layout other than the layouts.app,
you can override the livewire.layout config option.

‘layout’ => ‘app.other_default_layout’

But I did not find any “livewire.layout” file in my project. How can I create it?

Thanks!

USE in the method render: ->extends(‘app.nameyourlayout’)

Do you mean method render when I create a component with command like :
php artisan make:livewire Componentname
?
But I do not see any component dashboard under “app/Http/Livewire/” subdirectory…

The default template must be in resources / layouts … Livewire does not look for it in / Livewire … This template is not a livewire component, it is a normal .blade that includes @yield (´content´)