@extends('layouts.master')
@section('css')
{!! Html::style('css/jquery_ui.css')!!}
{!! Html::style('css/datatable/dataTables.bootstrap.css')!!}
@stop
@section('content')
@if(Session::has('message_success'))
{!! Session::get('message_success') !!}
@endif
@if(Session::has('message_error'))
{!! Session::get('message_error') !!}
@endif
{!!Form::select('convenio_id',$convenios,NULL,array('class' => 'form-control','id' => 'convenio_id'))!!}
{!!Form::select('estados',$estados,NULL,array('class' => 'form-control','id' => 'estados'))!!}
@stop
@section('postscript')
{!! Html::script('js/jquery_ui.js') !!}
{!! Html::script('js/datatable/jquery.dataTables.js') !!}
{!! Html::script('js/datatable/dataTables.bootstrap.js') !!}
@stop