@extends('layouts.app') @section('link') @endsection @section('style') @endsection @section('content')

Създаване на поръчка

{{ csrf_field() }}
@if ($errors->has('technician_id')) {{ $errors->first('technician_id') }} @endif
@if(auth()->user()->role_id==1)
@foreach(__('texte.order_statuses_'.auth()->user()->role_id) as $key=>$value) @if($key<7)
@endif @endforeach @if ($errors->has('status')) {{ $errors->first('status') }} @endif
@else @endif
@if ($errors->has('note')) {{ $errors->first('note') }} @endif
@if ($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
@if ($errors->has('product')) {{ $errors->first('product') }} @endif
@if ($errors->has('measure')) {{ $errors->first('measure') }} @endif
@if ($errors->has('quantity')) {{ $errors->first('quantity') }} @endif
@if ($errors->has('producer')) {{ $errors->first('producer') }} @endif
@if ($errors->has('mark')) {{ $errors->first('mark') }} @endif
@if ($errors->has('size')) {{ $errors->first('size') }} @endif
@if ($errors->has('color')) {{ $errors->first('color') }} @endif
@if ($errors->has('upload_file')) {{ $errors->first('upload_file') }} @endif
@if(auth()->user()->role_id==2 || auth()->user()->role_id==3 || auth()->user()->role_id==4 || auth()->user()->role_id==7) @else @endif
@endsection