{{ Form::text('name', old('name'), ['class' => 'form-control text-bornage-dgrey border-0' . ($errors->has('name') ? ' is-invalid' : ''). ($inputBackgroundClass??''), 'autofocus' => true]) }} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{ Form::text('firstname', old('firstname'), ['class' => 'form-control text-bornage-dgrey border-0' . ($errors->has('firstname') ? ' is-invalid' : '') . ($inputBackgroundClass??''), 'required'=> true]) }} @if ($errors->has('firstname')) {{ $errors->first('firstname') }} @endif
{{ Form::text('phone', old('phone'), ['class' => 'form-control text-bornage-dgrey border-0' . ($errors->has('phone') ? ' is-invalid' : ''). ($inputBackgroundClass??''), 'required'=> true]) }} @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif