mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-22 20:48:08 +00:00
- 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
28 lines
No EOL
853 B
PHP
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 |