@extends('layouts.partials.master') @section('title', 'Criar Entrega') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Criar Entrega']) Voltar
@csrf @method('POST')
@if ($errors->has('shipping_method_id'))
{{ $errors->first('shipping_method_id') }}
@endif
@if ($errors->has('destination_region_id'))
{{ $errors->first('destination_region_id') }}
@endif
@if ($errors->has('start_value'))
{{ $errors->first('start_value') }}
@endif
@if ($errors->has('end_value'))
{{ $errors->first('end_value') }}
@endif
@if ($errors->has('price'))
{{ $errors->first('price') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@endsection