@php
$role_id = Auth::user()->role_id;
@endphp
@include('links.header')
@if(Session::has('msg_e'))
Danger!
{!! session('msg_e') !!}
@endif
@if(Session::has('msg_auth'))
Danger!
{!! session('msg_auth') !!}
@endif
@if(!empty($msg_e))
{{ $msg_e }}
@endif
@if(!empty($auth_error))
{{ $auth_error }}
@endif
@if (Session::has('msg'))
Success!
{!! session('msg') !!}
@endif
@if (Session::has('msg_e'))
Register Here
{!! session('msg_e') !!}
@endif
@if(Session::has('successMsg'))
{{ Session::get('successMsg') }}
@endif
@include('links.footer')