@extends('template.layout') @section('styles') @endsection @section('content')

{{ $categoria->nombre }} {{ $categoria->descripcion }}

{{ Form::open(array('id' => 'form-validation','route' => ['categoria.search',$categoria->id], 'method' => 'get', 'class'=>'form-horizontal', 'style'=>'display: inline-block;')) }}
{!! Form::search('search', null, array('placeholder' => 'Buscar un tema...','class' => 'form-control', 'maxlength' => '50')) !!}
{!! Form::close() !!}
@if(!empty($temas) && count($temas) > 0) @foreach($temas as $tema) @endforeach
{{ $temas->appends(\Illuminate\Support\Facades\Input::except('page'))->links() }}
@else @endif
@endsection @section('scripts') @endsection