@include('includes.headLogin')

Create new Account

{{ csrf_field() }}
Name or Company name
@if ($errors->has('company')) {{ $errors->first('company') }} @endif
Country
{{----}} @if ($errors->has('country')) {{ $errors->first('country') }} @endif
Username
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
Email
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
Confirm Email
@if ($errors->has('email_confirmation')) {{ $errors->first('email_confirmation') }} @endif
Password
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
Confirm Password
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@include('includes.footerLogin') {{-- @extends('layouts.app') @section('content')
Register
{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@endsection --}}