@extends('dashboard.layouts.layouts') @section('content')

Orders

{{$title}}

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('quantity')) {{ $errors->first('quantity') }} @endif
@if ($errors->has('price')) {{ $errors->first('price') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('branch')) {{ $errors->first('branch') }} @endif
@endsection