@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.camera.title_singular') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.camera.fields.name_helper') }}
@if($errors->has('uuid'))
{{ $errors->first('uuid') }}
@endif {{ trans('cruds.camera.fields.uuid_helper') }}
@if($errors->has('brand'))
{{ $errors->first('brand') }}
@endif {{ trans('cruds.camera.fields.brand_helper') }}
@if($errors->has('serial_number'))
{{ $errors->first('serial_number') }}
@endif {{ trans('cruds.camera.fields.serial_number_helper') }}
@if($errors->has('site'))
{{ $errors->first('site') }}
@endif {{ trans('cruds.camera.fields.site_helper') }}
@if($errors->has('tower'))
{{ $errors->first('tower') }}
@endif {{ trans('cruds.camera.fields.tower_helper') }}
@endsection