{!! Form::label('first_name', trans('First Name *')) !!} {!! Form::text('first_name', old('first_name',$manager->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',$manager->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',$manager->phone), ['class' => 'form-control', 'placeholder' => trans('Phone Number *')]) !!} {!! $errors->first('phone', ':message') !!}
{!! Form::label('email', trans('Mail ID *')) !!} {!! Form::text('email', old('email',$manager->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',$manager->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',$manager->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, $manager->status) !!} {!! $errors->first('status', ':message') !!}    {!! Form::label('status', trans('disable')) !!} {!! Form::radio('status', 0, !$manager->status) !!} {!! $errors->first('status', ':message') !!}