@extends('layouts.app') @section('content') @if($userId == $klijent->id_user || $isAdmin || $userId == $klijent->id_user_reklamacije)
{{ csrf_field() }}

{{__("Edit")}}

@foreach($montirani as $mont)

{{'('.strtoupper($mont->uredjaj).') '.$mont->serijski_broj}}

@if($isAdmin) @endif
@endforeach
@foreach($equipment as $equip)

{{$equip->naziv.' ('.__("quantity").': '.$equip->kol.')'}}

@if($isAdmin) @endif
@endforeach
@foreach($vraceni as $vr)

{{'('.$vr->uredjaj.') '.$vr->serijski_broj}}


@endforeach
{{__("Change")}} {{__("Choose file")}} {{__("Remove")}}
{{__("Change")}} {{__("Choose file")}} {{__("Remove")}}
@if(!empty($napomene[0]))

{{__("Notes")}}

@foreach($napomene as $br=>$nap) {{__("Note")}} {{$br+1}}

{{$nap->napomena}}

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

{{__("Files")}}

@foreach($files as $file) @endforeach
@endif @if(!$imgDocs->isEmpty())

{{__("Documents")}}

@foreach($imgDocs as $doc) @endforeach
@endif @else

{{__("Access denied")}}!

{{__("Only Admin and Super admin can see this page")}}

@endif @endsection