10 lines
274 B
PHP
10 lines
274 B
PHP
@extends ('layouts.default')
|
|
|
|
@section ('content')
|
|
<h1>dashboard</h1>
|
|
|
|
<form method="POST" action="{{ route('logout')}}">
|
|
@csrf
|
|
<button type="submit" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">Выйти</button>
|
|
</form>
|
|
@endsection |