mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
19 lines
449 B
PHP
19 lines
449 B
PHP
@extends('layouts.base')
|
|
|
|
@section('header')
|
|
<nav>
|
|
<a href="{{ route('account.dashboard') }}">{{ config('app.name') }}</a>
|
|
@if (Auth::check())
|
|
<a href="{{ route('account.logout') }}">Logout</a>
|
|
@endif
|
|
</div>
|
|
</nav>
|
|
@endsection
|
|
|
|
@section('body')
|
|
<div class="container pt-4">
|
|
@include('parts.errors')
|
|
@include('parts.breadcrumb')
|
|
@yield('content')
|
|
</div>
|
|
@endsection
|