{!! Form::open(['route' => 'register', 'method' => 'post', 'id' => 'formAuthentication', 'class' => 'mb-3']) !!}
{!! Form::label('username', 'User Name', ['class' => 'form-label']) !!} {!! Form::text('name', null, [ 'id' => 'username', 'class' => 'form-control', 'placeholder' => 'Enter your username', ]) !!}
{!! Form::label('email', 'Email Address', ['class' => 'form-label']) !!} {!! Form::email('email', null, [ 'class' => 'form-control', 'id' => 'email', 'placeholder' => 'Enter your email', ]) !!}
{!! Form::label('password', 'Password') !!}
{!! Form::password('password', ['class' => 'form-control']) !!}
{!!Form::submit('Sign up',['class'=>"btn btn-primary d-grid w-100"])!!}

Already have an account? Sign in instead