@extends('layout.layout') @section('content')

Creeaza un test

@csrf
@if(count($tests) <= 0)

Nu este niciun test creat

@else @if($errors->has('success')) @foreach ($errors->all() as $error)
@endforeach @endif @if($errors->has('error')) @foreach ($errors->all() as $error)
@endforeach @endif @foreach ($tests as $test) @if($test->activ === 1) @else @endif @endforeach
Titlu Puncte minime Minim intrebari per/test minime Status Acțiuni
{{ $test->name }} {{ $test->min_questions }} {{ $test->questions }}ActivInactiv @if($test->activ === 0) @else @endif
@endif {{ $tests->links() }}
@push('js') @endpush @endsection