@extends('layouts.admin') @section('content')
{{ trans('global.create') }} CCTV
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.cctv.fields.name_helper') }}
@if($errors->has('lat'))
{{ $errors->first('lat') }}
@endif {{ trans('cruds.cctv.fields.lat_helper') }}
@if($errors->has('long'))
{{ $errors->first('long') }}
@endif {{ trans('cruds.cctv.fields.long_helper') }}
@endsection