@extends('layouts.app') @section('form-title') {{ __('Google Maps field') }} @endsection @section('breadcrumb') @endsection @section('content')
@csrf @method('PUT')
{!! yesNoRadio('option_to_fill_in', old('option_to_fill_in', $google_maps_field->option_to_fill_in ?? 'yes')) !!} @if($errors->has('option_to_fill_in'))

{{ $errors->first('option_to_fill_in') }}

@endif
{!! yesNoRadio('automatically_fill_in', old('automatically_fill_in', $google_maps_field->automatically_fill_in ?? 'yes')) !!} @if($errors->has('automatically_fill_in'))

{{ $errors->first('automatically_fill_in') }}

@endif
{!! yesNoRadio('forward_to_gm_api', old('forward_to_gm_api', $google_maps_field->forward_to_gm_api ?? 'yes')) !!} @if($errors->has('forward_to_gm_api'))

{{ $errors->first('forward_to_gm_api') }}

@endif
{{-- Edit section ends --}}
@endsection @push('child-scripts') @endpush