@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.alert.title_singular') }}
@method('POST') @csrf
@if($errors->has('device'))
{{ $errors->first('device') }}
@endif {{ trans('cruds.alert.fields.device_helper') }}
@if($errors->has('message'))
{{ $errors->first('message') }}
@endif {{ trans('cruds.alert.fields.message_helper') }}
@if($errors->has('lat'))
{{ $errors->first('lat') }}
@endif {{ trans('cruds.alert.fields.lat_helper') }}
@if($errors->has('lon'))
{{ $errors->first('lon') }}
@endif {{ trans('cruds.alert.fields.lon_helper') }}
@endsection