@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.workorder.title_singular') }}
@csrf
@if($errors->has('vendor'))
{{ $errors->first('vendor') }}
@endif {{ trans('cruds.workorder.fields.vendor_helper') }}
@if($errors->has('vendor_spec'))
{{ $errors->first('vendor_spec') }}
@endif {{ trans('cruds.workorder.fields.vendor_spec_helper') }}
@if($errors->has('details'))
{{ $errors->first('details') }}
@endif {{ trans('cruds.workorder.fields.details_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.workorder.fields.status_helper') }}
@endsection