@extends('layouts.login') @section('browserTitle', 'Logout') @section('title') {{ trans('login.logout') }} @endsection @section('subtitle') {{ trans('login.logoutMsg') }} @endsection @section('body')

{{ trans('login.confirmLogout') }}

{{ trans('login.logout') }} @if((isset($_SESSION['logged']))&&($_SESSION['logged']==true)) @if ( $_SESSION['role'] == 'admin') {{ trans('btn.cancel') }} @elseif ($_SESSION['role'] == 'clinician') {{ trans('btn.cancel') }} @elseif ($_SESSION['role'] == 'patient') {{ trans('btn.cancel') }} @endif @endif
@endsection