@extends('layouts.admin')
@section('title')
New Account
@endsection
@section('content')
@if (count($errors) > 0)
{{ trans('strings.whoops') }}! {{ trans('auth.errorencountered') }}
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
Create New Account
@endsection