@extends('layouts.app') @section('content')
{{ csrf_field() }} @method('PUT')

{{__("Data update")}}

@if($isAdmin)
@endif
@if(!$comments->isEmpty())

{{__("Comments")}}

@foreach($comments as $br=>$com) {{__("Comment")}} {{$br+1}}
admins_only == 0) class="success" @else class="danger" @endif>

{{$com->comment}}

{{$com->ime.' '.$com->prezime}} {{date('d.m.Y. H:i:s', strtotime($com->created_at))}} @if($isSuperAdmin) @endif
@endforeach
@endif @endsection