@extends('public.layouts.default') @section('content')

Guest User

Rydeus

{{ Form::model($user, ['action' => 'UserController@storeGuestUser', 'method' => 'post']) }}
{{ Form::Label('first_name', 'First Name') }} {{ Form::text('first_name', null, array('id'=>'first_name', 'class'=>'text-input border-style')) }} @include('public.includes.error-message',['key' => 'first_name'])
{{ Form::Label('last_name', 'Last Name') }} {{ Form::text('last_name', null, array('id'=>'last_name', 'class'=>'text-input border-style')) }} @include('public.includes.error-message',['key' => 'last_name'])
{{ Form::Label('email', 'Email') }} {{ Form::text('email', null, array('id'=>'email', 'class'=>'text-input border-style')) }} @include('public.includes.error-message',['key' => 'email'])
{{ Form::Label('phone', 'Phone') }} {{ Form::text('phone', null, array('id'=>'phone', 'class'=>'text-input border-style')) }} @include('public.includes.error-message',['key' => 'phone'])
{{ Form::Label('company', 'Company') }} {{ Form::text('company',null, array('id'=>'company', 'class'=>'text-input border-style')) }} @include('public.includes.error-message',['key' => 'company'])
{{ Form::Label('address', 'Address 1') }} {{ Form::text('address',null, array('id'=>'address', 'class'=>'text-input border-style', 'placeholder'=>'Enter a Location')) }} {{ Form::hidden('latitude', null, ['class' => 'form-control','id'=>'latitude']) }} {{ Form::hidden('longitude', null, ['class' => 'form-control','id'=>'longitude']) }} @include('public.includes.error-message',['key' => 'address']) @include('public.includes.error-message',['key' => 'latitude']) @include('public.includes.error-message',['key' => 'longitude'])
{{ Form::Label('address2', 'Address 2') }} {{ Form::text('address2',null, array('id'=>'address2', 'class'=>'text-input border-style')) }} @include('public.includes.error-message',['key' => 'address2'])
{{ Form::Label('city', 'City') }} {{ Form::text('city',null, array('id'=>'city', 'class'=>'text-input border-style')) }} @include('public.includes.error-message',['key' => 'city'])
{{ Form::Label('state', 'Province') }} {{ Form::text('state',null, array('id'=>'state', 'class'=>'text-input border-style')) }} @include('public.includes.error-message',['key' => 'state'])
{{ Form::Label('country', 'Country') }} {{ Form::text('country',null, array('id'=>'country', 'class'=>'text-input border-style')) }} @include('public.includes.error-message',['key' => 'country'])
{{ Form::Label('pincode', 'Postal Code') }} {{ Form::text('pincode',null, array('id'=>'pincode', 'class'=>'text-input border-style')) }} @include('public.includes.error-message',['key' => 'pincode'])
{{ Form::submit('Save and Pay' , ['class' => 'sign_in-btn', 'name'=>'create_guest_user']) }} {{ Form::close() }}

Already have a account? Sign in now

@endsection @section('scripts') @parent @endsection