@extends('superAdmin.layouts.auth') @section('title') {{ env('APP_NAME') }} | Add New Challenges @endsection @section('styles') @endsection @section('content')

Return to Challenges

@if ($errors->any())
@endif

Add New Challenges

@csrf
@if(count($challengeCategories) > 0)
    @foreach ($challengeCategories as $challengeCategory)
  • {{ $challengeCategory->name }} image {{ $challengeCategory->name }}
  • @endforeach
@endif
  • @if(count($challengetakingTypes) > 0)
      @foreach ($challengetakingTypes as $challengetakingType)
    • @endforeach
    @endif
  • @if(count($companys) > 0) @endif @if(count($challengetakingTypes) > 0) @endif
@endsection @section('scripts') @endsection