@extends('layouts.app') @section('htmlheader_title') Home @endsection @section('main-content')

Insertar Ubicaciones


{!! Form::open(['route' => 'ubicacion.store', 'method' => 'post']) !!}
{!! Form::label('longitud', 'Longitud') !!} {!! Form::text('longitud', null, ['class' => 'form-control', 'placeholder'=>'Longitud' , 'required' => 'required']) !!}
{!! Form::label('latitud', 'Latitud') !!} {!! Form::text('latitud', null, ['class' => 'form-control', 'placeholder'=>'Latitud' , 'required' => 'required']) !!}
{!! Form::close() !!}
@endsection