@extends('layouts.app') @push('css_lib') {{--dropzone--}} @endpush @section('title',trans('lang.locationdetails_table')) @section('content') @include('flash::message') @include('adminlte-templates::common.errors')
{!! Form::open(['route' => 'location_details.store']) !!}
{!! Form::label('country', 'Country Name', ['class' => 'col-5 control-label text-right']) !!}
{!! Form::label('store_id', trans("lang.store_name"), ['class' => 'col-5 control-label text-right']) !!}
{!! Form::label('locations_name', trans("lang.locations_name"), ['class' => 'col-5 control-label text-right']) !!}
{!! Form::label('delivery_charge','Delivery Charge', ['class' => 'col-5 control-label text-right']) !!}
{!! Form::number('delivery_charge','', ['id'=>'delivery_charge','class' => 'form-control','placeholder'=>'Delivery Charge','required'=>'true']) !!}
{!! Form::label('name', trans("lang.areaname"), ['class' => 'col-5 control-label text-right']) !!}
{!! Form::text('area_name', null, ['id'=>'lsearchcity','class' => 'form-control','placeholder'=> trans("lang.areaname_placeholder"),'required'=>'true']) !!}
{{ trans("lang.areaname_help") }}
{!! Form::label('name', trans("lang.latitude"), ['class' => 'col-5 control-label text-right']) !!}
{!! Form::text('latitude', null, ['id'=>'llat','class' => 'form-control','placeholder'=> trans("lang.latitude_placeholder")]) !!}
{{ trans("lang.latitude_help") }}
{!! Form::label('name', trans("lang.longitude"), ['class' => 'col-5 control-label text-right']) !!}
{!! Form::text('longitude', null, ['id'=>'llng','class' => 'form-control','placeholder'=> trans("lang.longitude_placeholder")]) !!}
{{ trans("lang.longitude_help") }}
{!! Form::label('status', trans("lang.status"), ['class' => 'col-5 control-label text-right']) !!}
{{ trans("lang.status") }}
{{trans('lang.cancel')}}
{!! Form::close() !!}
@include('layouts.media_modal',['collection'=>null]) @endsection @push('scripts_lib') {{--dropzone--}} @endpush