@extends('layouts.main') @section('title') Result Page @endsection @section('style') @endsection @section('content') @if($errors->any()) @foreach ($errors->all() as $error) @endforeach @endif @if ($message = Session::get('success')) @endif
Results
@if($users->count() == 0)

There is no matches.

@endif @foreach($users as $user) @endforeach
@endsection @section('script') @endsection