@extends('layouts.admin') @section('content')
{{ __('Register') }}
@if (session('status'))
{!! session('status') !!}
@endif @csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('surname')) {{ $errors->first('surname') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@endsection