{!! Form::label('first_name', trans('First Name *')) !!} {!! Form::text('first_name', old('first_name'), ['class' => 'form-control', 'placeholder' => trans('First Name *')]) !!} {!! $errors->first('first_name', ':message') !!}
{!! Form::label('last_name', trans('Last Name *')) !!} {!! Form::text('last_name', old('last_name'), ['class' => 'form-control', 'placeholder' => trans('Last Name *')]) !!} {!! $errors->first('last_name', ':message') !!}
{!! Form::label('phone', trans('Phone Number *')) !!} {!! Form::number('phone', old('phone'), ['class' => 'form-control', 'placeholder' => trans('Phone Number *')]) !!} {!! $errors->first('phone', ':message') !!}
{!! Form::label('email', trans('Mail ID *')) !!} {!! Form::text('email', old('email'), ['class' => 'form-control', 'placeholder' => trans('Email ID *')]) !!} {!! $errors->first('email', ':message') !!}
{!! Form::label('company_name', trans('Company Name *')) !!} {!! Form::text('company_name', old('company_name'), ['class' => 'form-control', 'placeholder' => trans('Company Name *')]) !!} {!! $errors->first('company_name', ':message') !!}
{!! Form::label('gst', trans('GST / PAN Number *')) !!} {!! Form::text('gst', old('gst'), ['class' => 'form-control', 'placeholder' => trans('GST / PAN Number *')]) !!} {!! $errors->first('gst', ':message') !!}
{!! Form::label('status', trans('Status')) !!}
{!! Form::label('status', trans('Enable')) !!} {!! Form::radio('status', 1, ['class' => 'form-control', 'placeholder' => trans('user::users.form.last-name')]) !!} {!! $errors->first('status', ':message') !!}    {!! Form::label('status', trans('disable')) !!} {!! Form::radio('status', 0, ['class' => 'form-control', 'placeholder' => trans('user::users.form.last-name')]) !!} {!! $errors->first('status', ':message') !!}