@section('styles') {{ HTML::style('css/bootstrap.min.css') }} {{ HTML::style('css/bootstrap-social.css') }} {{ HTML::style('css/bootstrap-select.min.css') }} {{ HTML::style('css/font-awesome.min.css') }} {{ HTML::style('css/style.css') }} @show @section('js') {{ HTML::script('js/jquery-1.11.2.min.js') }} {{ HTML::script('js/bootstrap.js') }} {{ HTML::script('js/bootstrap-select.min.js') }} @show
@section('cabecera') @if(Auth::check())
@endif @show
@if(isset($breadcrumb))
@endif
@if (Session::has('warning'))
{{ Session::get('warning') }}
@endif @if (Session::has('info'))
{{ Session::get('info') }}
@endif @if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('error'))
{{ Session::get('error') }}
@endif @if($errors->any())

@endif
@section('contenido') @show