flexisip-account-manager/flexiapi/resources/views/layouts/account.blade.php
Timothée Jaussoin fc96338bfb Redesign the UI
2023-06-09 08:24:49 +00:00

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