@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.terminal.title_singular') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.terminal.fields.name_helper') }}
@if($errors->has('latitude'))
{{ $errors->first('latitude') }}
@endif
@if($errors->has('longitude'))
{{ $errors->first('longitude') }}
@endif
@can('complaint_access')
@if($errors->has('zoom_meeting_id'))
{{ $errors->first('zoom_meeting_id') }}
@endif
@if($errors->has('zoom_meeting_password'))
{{ $errors->first('zoom_meeting_password') }}
@endif
@if($errors->has('zoom_meeting_signature'))
{{ $errors->first('zoom_meeting_signature') }}
@endif
@endcan
@endsection