@extends('layouts.master') @section('css') @section('title') {{ trans('Results_trans.title_page') }} @stop @endsection @section('page-header')

{{ trans('Results_trans.add_result') }}

@endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['route' => 'results.create','method'=>'POST','autocomplete'=>'off' ]) !!} @csrf {{ method_field('get') }}
{!! Form::close() !!}
@if ($users->count() > 0) @foreach ($users as $index=>$user) @endforeach
# @lang('site.name') @lang('site.description')
{{ $index + 1 }} {{ $user->name }} {!! $user->email !!}
@endif
@endsection @section('js') @endsection