@php $title = __('Sostituzione codici articolo'); @endphp @extends('layouts.app') @section('title') {{ $title }} @endsection @section('breadcrumbs') {{ __('Prodotti') }} {{ $title }} @endsection @section('content')
{{ $title }} {{ html()->form('POST', route('articles.replacement.store'))->class('form-horizontal')->id('replacement-form')->open() }}
@if ($errors->has('article_from'))
{{ $errors->first('article_from') }}
@endif
@if ($errors->has('article_to'))
{{ $errors->first('article_to') }}
@endif
{{ __('Seleziona prima un codice articolo per vedere i contenuti collegati.') }}
{{ html()->closeModelForm() }}
@endsection @push ('after-scripts') @endpush