flexisip-account-manager/flexiapi/resources/views/layouts/account.blade.php
Timothée Jaussoin c65f1a804c UI and feature adjustments
- Add a toggle for the phone SMS registration/auth related features
- Add the newsletter email registration toggle
- Rename and move around views and controllers
- Refactor the login and registration forms
- Split the registration form in two, email and phone
2020-09-14 11:24:59 +02:00

28 lines
No EOL
853 B
PHP

@extends('layouts.base')
@section('header')
<nav class="navbar navbar-expand">
<div class="collapse navbar-collapse" >
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="{{ route('account.panel') }}">{{ config('app.name') }}</a>
</li>
</ul>
@if (Auth::check())
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="{{ route('account.logout') }}">Logout</a>
</li>
</ul>
@endif
</div>
</nav>
@endsection
@section('body')
<div class="container pt-4">
@include('parts.errors')
@include('parts.breadcrumb')
@yield('content')
</div>
@endsection