@extends('layouts.login') @section('title', 'Create Profile | ') @section('content')
{{ csrf_field() }} Fill the form to complete your profile. After completing the profile then login into the Techsaga CRM, do post on project, comments and track the progress...
@if ($errors->has('first_name'))

{{ $errors->first('first_name') }}

@endif
@if ($errors->has('phone_number'))

{{ $errors->first('phone_number') }}

@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
{!! Form::submit('Submit', ['class' => 'btn btn-sm btn-primary']) !!} {!! Form::close() !!}
@endsection