@extends('admin::layouts.content') @section('page_title') {{ __('admin::app.settings.inventory_sources.add-title') }} @stop @section('content')
@csrf() {!! view_render_event('bagisto.admin.settings.inventory.create.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'), 'stateCode' => old('state')])
@{{ errors.first('city') }}
@{{ errors.first('street') }}
@{{ errors.first('postcode') }}
{!! view_render_event('bagisto.admin.settings.inventory.create.after') !!}
@stop