@extends('layouts.partials.master') @section('title', 'Editar Intervalo') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Editar Intervalo']) Voltar
@include('layouts.components.alerts')
@csrf @method('PUT')
@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 ($isTheOnlyActiveInterval)
O método de envio predefinido tem de ter pelo menos um intervalo ativo
@else @if ($errors->has('status'))
{{ $errors->first('status') }}
@endif @endif
@endsection