@if((Session::has('error')))
 Error: {{ Session::get('error') }}
@endif @if((Session::has('success')))
 Éxito: {{ Session::get('success') }}
@endif @if(Session::has('success_notificacion'))
 Éxito: {{ Session::get('success_notificacion') }}
@endif @if((Session::has('warning')))
 Advertencia: {{ Session::get('warning') }}
@endif @if((Session::has('info')))
 Información: {{ Session::get('info') }}
@endif
@if(isset($module_title))

{{ $module_title }}

@yield('title_right')

@endif @yield('content')