@extends('layouts.blank') @section('content')

{{translate('Create a New Account')}}

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{translate('Already have an account')}} ? {{translate('Sign In')}}
{{translate('Sign Up with')}}
@endsection