@extends('layouts.admin-bloqueo-vista')
@section('titulo', 'Lista de remisiones')
@section('css')
@endsection
@section('botonera')
{!! Form::model($filtro, ['url' => '/remision', 'method' => 'GET']) !!}
{!! Form::label('cups') !!}
{!! Form::text('cups', null, ['class' => 'form-control input-sm', 'placeholder' => 'filtrar por CUPS']) !!}
{!! Form::label('nombre') !!}
{!! Form::text('nombre', null, ['class' => 'form-control input-sm', 'placeholder' => 'filtrar por Nombre']) !!}
{!! Form::label('valor') !!}
{!! Form::text('valor', null, ['class' => 'form-control input-sm', 'placeholder' => 'filtrar por Valor']) !!}
{!! Form::label('sexo') !!}
{!! Form::text('sexo', null, ['class' => 'form-control input-sm', 'placeholder' => 'filtrar por Sexo']) !!}
{!! Form::label('edad_inicial') !!}
{!! Form::text('edad_inicial', null, ['class' => 'form-control input-sm', 'placeholder' => 'filtrar por Edad inicial']) !!}
{!! Form::label('edad_final') !!}
{!! Form::text('edad_final', null, ['class' => 'form-control input-sm', 'placeholder' => 'filtrar por Edad Final']) !!}
@include('pagination.default', ['paginator' => $remisiones])
{!! Form::close() !!}