@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.update', $editlocationdetails[0]->id], 'method' => 'patch']) !!}
{!! 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', $editlocationdetails[0]->delivery_charge, ['id'=>'delivery_charge','class' => 'form-control','placeholder'=>'Delivery Charge','required'=>'true','step' => '0.01']) !!}
{!! Form::label('name', trans("lang.areaname"), ['class' => 'col-5 control-label text-right']) !!}
{!! Form::text('area_name', $editlocationdetails[0]->area_name, ['id'=>'lesearchcity','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', $editlocationdetails[0]->latitude, ['id'=>'lelat','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', $editlocationdetails[0]->longitude, ['id'=>'lelng','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