@extends('template.layouts.auth') @section('content')
@include('template.components.flag-bar')

{{ __('Register') }}

{{ __('Create an account to start using YAFFA') }}

@csrf @include('auth.components.email', ['autofocus' => false])
$errors->has('name'), ]) id="name" name="name" placeholder="{{ __('Name') }}" required type="text" value="{{ old('name') }}" > @error('name') {{ __($message) }} @enderror
@include('auth.components.password') @include('auth.components.password_confirmation')
@error('tos') {{ $message }} @enderror

{{ __('Do you have an account?') }} {{ __('Click here to sign in') }}

@endsection