@extends('layouts.app') @section('content')
{{ csrf_field() }}
{{__("Add equipment")}}
{{__('Code')}}
@if($errors->has('code'))
{{$errors->first('code')}}
@endif
{{__('Equipment')}}
*
@if($errors->has('oprema'))
{{$errors->first('oprema')}}
@endif
{{__("Equipment type")}}
-- {{__("Equipment type")}} --
@foreach($tipOpreme as $tip)
{{$tip->tip}}
@endforeach
{{__("Category")}}
-- {{__("Category")}} --
@foreach($categories as $category)
{{$category->category}}
@endforeach
{{__("Package")}}
-- {{__("Package")}} --
@foreach($packages as $pack)
{{$pack->package}}
@endforeach
{{__("Price")}}:
@if($errors->has('price'))
{{$errors->first('price')}}
@endif
@endsection