@extends('admin::layouts.content') @section('page_title') {{ __('admin::app.settings.inventory_sources.edit-title') }} @stop @section('content')
@csrf() {!! view_render_event('bagisto.admin.settings.inventory.edit.before') !!}
@{{ errors.first('code') }}
@{{ errors.first('name') }}
@{{ errors.first('latitude') }}
@{{ errors.first('longitude') }}
@{{ errors.first('priority') }}
@{{ errors.first('contact_name') }}
@{{ errors.first('contact_email') }}
@{{ errors.first('contact_number') }}
@include ('admin::customers.country-state', ['countryCode' => old('country') ?? $inventorySource->country, 'stateCode' => old('state') ?? $inventorySource->state])
@{{ errors.first('city') }}
@{{ errors.first('street') }}
@{{ errors.first('postcode') }}
{!! view_render_event('bagisto.admin.settings.inventory.edit.after') !!}
@stop