@extends('layouts.login') @section('content')
Cadastro
{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('cpf')) {{ $errors->first('cpf') }} @endif
@if ($errors->has('telefone')) {{ $errors->first('telefone') }} @endif
@if ($errors->has('endereco')) {{ $errors->first('endereco') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection