'osindled' not declared in this scope

evening all ive wrote this coding for switching leds on and of using a button come to verify and its coming up with error "'osindled' not declared in this scope" its the last biut of coding but same as the others. I don't understand why there is a error any help would be greatly apprciated Michael

    //rear light module test
const int brakeled = 2;
const int sideled = 3;
const int fogled = 4;
const int revled = 5;
const int nsindled = 6;
const int ofindled = 7;
const int brake = A0;
const int side = A1;
const int fog = A2;
const int rev = A3; 
const int nsind = A4;
const int osind = A5;

int brakeState = 0;
int sideState = 0;
int fogState = 0;
int revState = 0;
int nsindState = 0;
int osindState = 0;

void setup() {
  // put your setup code here, to run once:
pinMode(brakeled, OUTPUT);
pinMode(sideled, OUTPUT);
pinMode(fogled, OUTPUT);
pinMode(revled, OUTPUT);
pinMode(nsindled, OUTPUT);
pinMode(osindled, OUTPUT);
pinMode(brake, INPUT);
pinMode(side, INPUT);
pinMode(fog, INPUT);
pinMode(rev, INPUT);
pinMode(nsind, INPUT);
pinMode(osind, INPUT);
}

void loop() {
 brakeState = digitalRead(brake);
 if (brakeState == HIGH) {
  digitalWrite(brakeled, HIGH);
 }
 else {
  digitalWrite(brakeled, LOW);
   }
   {
 sideState = digitalRead(side);
 if (sideState == HIGH) {
  digitalWrite(sideled, HIGH);
 }
 else {
  digitalWrite(sideled, LOW);
   }
   {
 fogState = digitalRead(fog);
 if (fogState == HIGH) {
  digitalWrite(fogled, HIGH);
 }
 else {
  digitalWrite(fogled, LOW);
   }
   {
 revState = digitalRead(rev);
 if (revState == HIGH) {
  digitalWrite(revled, HIGH);
 }
 else {
  digitalWrite(revled, LOW);
   }
   {
 nsindState = digitalRead(nsind);
 if (nsindState == HIGH) {
  digitalWrite(nsindled, HIGH);
 }
 else {
  digitalWrite(nsindled, LOW);
   }
{
 osindState = digitalRead(osind);
 if (osindState == HIGH) {
  digitalWrite(osindled, HIGH);
 }
 else {
  digitalWrite(osindled, LOW);
   }
     }

I see an ofindled variable declared but no osindled.

Your formatting makes the code harder to follow. The autoformat function (ctrl-t or Tools, Auto Format) will format your code in a standard manner.

Read the how to use this forum-please read stickies to see how to propely post code.