@extends('layouts.app', ['class' => 'bg-default']) @section('content') @include('layouts.headers.guest')
{{ __('Create new account') }} {{ __('OR Sign in with these credentials:') }}
{{ __('Username') }} admin@argon.com {{ __('Password') }} secret
@csrf
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if (Route::has('password.request')) {{ __('Forgot password?') }} @endif
@endsection