Summer Sale! All accounts are 50% off this week.

satheeshkumarj's avatar

I want to show a page inside another page

I have view page for map geocode.blade.php

<div id="map"></div>
<script>
script goes here
</script>

I have a form inside another page create.blde.php

@extends('layouts.sidebar')
@section('content')  
<form>
 @include('map.geocode')
</form
@endsection
@section('script')
@endsection

Map is not getting

When I use like this

@extends('layouts.sidebar')
@include('map.geocode')
@section('content')  

map is getting before form. I need map inside the form

0 likes
2 replies

Please or to participate in this conversation.