@extends('layouts.admin') @section('content')
{{ trans('global.create') }} AUDIO
@csrf
@if($errors->has('type'))
{{ $errors->first('type') }}
@endif {{ trans('cruds.audio.fields.type_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.audio.fields.name_helper') }}
@if($errors->has('location'))
{{ $errors->first('location') }}
@endif {{ trans('cruds.pole.fields.location_helper') }}
{{--
@if($errors->has('lat'))
{{ $errors->first('lat') }}
@endif {{ trans('cruds.audio.fields.lat_helper') }}
@if($errors->has('long'))
{{ $errors->first('long') }}
@endif {{ trans('cruds.audio.fields.long_helper') }}
--}}
@if($errors->has('pole_id'))
{{ $errors->first('pole_id') }}
@endif {{ trans('cruds.audio.fields.pole_helper') }}
@endsection