@extends('default.layout') @section('content')

{{isset($bairro) ? 'Editar' : 'Novo'}} Bairro

@csrf
@if($errors->has('nome'))
{{ $errors->first('nome') }}
@endif
@if($errors->has('valor_entrega'))
{{ $errors->first('valor_entrega') }}
@endif
@if($errors->has('cidade_id'))
{{ $errors->first('cidade_id') }}
@endif
@endsection