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

ShipJunction

Sign up to your account

{{ csrf_field() }} {!! Form::hidden('googleid',$user->google_id) !!} @php @endphp
{!! Form::text('name',$user->first_name, ['class' => 'form-control', 'placeholder'=>'First Name', 'id' => 'name', 'disabled'=>'disabled']) !!} @if ($errors->has('name')) The first name field is required. @endif
{!! Form::text('lname',$user->last_name, ['class' => 'form-control', 'placeholder'=>'Last Name','id' => 'lastname', 'disabled'=>'disabled']) !!} @if ($errors->has('lname')) The Last name field is required. @endif
@if ($errors->has('role')) {{ $errors->first('role') }} @endif
{!! Form::email('email',$user->email, ['class' => 'form-control', 'placeholder'=>'Email Address', 'autocomplete'=>'off', 'id' => 'email', 'disabled'=>'disabled']) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::number('phone',null, ['class' => 'form-control', 'id' => 'phone', 'placeholder'=>'Mobile Number']) !!} @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('terms')) {{ $errors->first('terms') }} @endif
{!! Form::submit('Sign up', ['class' => 'form-control btn btn-primary login-button', 'id' => 'submit']) !!}
{!! Form::close() !!}
@endsection