@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('global.deviceModel.title_singular') }}
@csrf
@if($errors->has('name'))

{{ $errors->first('name') }}

@endif

{{ trans('global.deviceModel.fields.name_helper') }}

@if($errors->has('manufacturer_id'))

{{ $errors->first('manufacturer_id') }}

@endif

{{ trans('global.deviceModel.fields.manufacturer_helper') }}

@endsection