@extends('layouts.app') @section('titulo','Usuario - '.config('app.name')) @section('header','Usuario') @section('breadcrumb') @endsection @section('style') @endsection @section('content')

Registrar Usuario

@csrf
{{--
--}}
@if(count($errors) > 0)
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@endsection @section('scripts') @endsection