@extends('admin.layouts.layout') @section('content')
@if(empty($editQuestionScreenData[0]->id))
@else @endif @csrf

{{ !empty($editQuestionScreenData[0]->id) ? 'Add' : 'Edit' }} Question Screen

@if ($errors->has('label')) {{ $errors->first('label') }}@endif
@if ($errors->has('description')){{ $errors->first('description') }}@endif

List Question Screen

@if(!empty($getQuestionScreenData)) @foreach($getQuestionScreenData as $key=> $questionScreen) @endforeach @endif
@endsection @section('pagescriptcode') @endsection