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

{{isset($transp) ? 'Editar' : 'Nova'}} Transportadora

@csrf
@if($errors->has('cnpj_cpf'))
{{ $errors->first('cnpj_cpf') }}
@endif
@if($errors->has('razao_social'))
{{ $errors->first('razao_social') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif

@if($errors->has('logradouro'))
{{ $errors->first('logradouro') }}
@endif
@if($errors->has('cidade'))
{{ $errors->first('cidade') }}
@endif
@if($errors->has('telefone'))
{{ $errors->first('telefone') }}
@endif
@endsection