@extends('layouts.app') @section('title', __('app.new_user')) @section('controller-data', 'users') @section('breadcrumb') @endsection @section('content')
@include('flash-message')
@method('POST') @csrf
{!! $errors->first('name', '

:message

') !!}
{!! $errors->first('email', '

:message

') !!}
{!! $errors->first('password', '

:message

') !!}
{!! $errors->first('password_confirmation', '

:message

') !!}
{{ strtoupper(__('app.cancel')) }}
@endsection