@extends('layouts.app') @section('content')
Register
{!! Form::open(['route' => 'register', 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'POST'] ) !!} {{ csrf_field() }}
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => 'Username', 'id' => 'name', 'required', 'autofocus']) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::text('first_name', null, ['class' => 'form-control', 'placeholder' => 'First Name', 'id' => 'first_name']) !!} @if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
{!! Form::text('last_name', null, ['class' => 'form-control', 'placeholder' => 'Last Name', 'id' => 'last_name']) !!} @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
{!! Form::email('email', null, ['class' => 'form-control', 'id' => 'email', 'placeholder' => 'E-Mail Address', 'required']) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::password('password', ['class' => 'form-control', 'id' => 'password', 'placeholder' => 'Password', 'required']) !!} @if ($errors->has('password')) {{ $errors->first('password') }} @endif
{!! Form::password('password_confirmation', ['class' => 'form-control', 'id' => 'password-confirm', 'placeholder' => 'Confirm Password', 'required']) !!}
@if(config('settings.reCaptchStatus'))
@endif

Or Use Social Logins to Register

@include('partials.socials') {!! Form::close() !!}
@endsection @section('footer_scripts') @endsection