@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.earthquake.title_singular') }}
@csrf
@if($errors->has('magnitude'))
{{ $errors->first('magnitude') }}
@endif {{ trans('cruds.earthquake.fields.magnitude_helper') }}
@if($errors->has('lat'))
{{ $errors->first('lat') }}
@endif {{ trans('cruds.earthquake.fields.lat_helper') }}
@if($errors->has('long'))
{{ $errors->first('long') }}
@endif {{ trans('cruds.earthquake.fields.long_helper') }}
@if($errors->has('device'))
{{ $errors->first('device') }}
@endif {{ trans('cruds.earthquake.fields.device_helper') }}
@endsection