@extends('layouts.app') @section('title', __('essentials::lang.edit_work_location')) @section('content') @include('essentials::layouts.nav_hrm')

@lang('essentials::lang.edit_work_location')

{!! Form::open(['url' => action([\Modules\Essentials\Http\Controllers\WorkLocationController::class, 'update'], [$location->id]), 'method' => 'post']) !!}
{!! Form::label('name', __('business.location') . ':') !!} {!! Form::text('name', $location->name, ['class' => 'form-control', 'required']) !!}
{!! Form::label('latitude', __('essentials::lang.latitude') . ':') !!} {!! Form::text('latitude', $location->latitude, ['class' => 'form-control']) !!}
{!! Form::label('longitude', __('essentials::lang.longitude') . ':') !!} {!! Form::text('longitude', $location->longitude, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection