@extends('backend.superadmin.index') @section('body') Interview Edit Interview List @if(session('success')) Success {{session('success')}} × @endif @if(session('error')) Error {{session('error')}} × @endif @if($errors->any()) @foreach($errors->all() as $error) Error {{$error}} @endforeach × @endif General Details Interview Details {{csrf_field()}} Title * Guest Name * Guest Designation * Category* --Choose-- @foreach($categories as $category) category_id==$category->id) selected @endif>{{$category->name}} @endforeach Type* --Choose Type-- type=='Featured') selected @endif>Featured type=='General') selected @endif>General Status* status=='Active') selected @endif>Active status=='Pending') selected @endif>Pending @php $image_url = config('filesystems.asset').'/'.'interview'; @endphp @if (isset($interview->image)) @else @endif Featured Image Image Type image_type=='full') selected @endif>Full Width image_type=='box') selected @endif>Box Published Date* Expiry Date Left blank if visible for anytime Short Description {{$interview->guest_intro}} {{$interview->details}} Previous Next Update @endsection @section('script') @endsection