@extends('admin.layout.dashboard-template') @section('content')
@csrf
@if(\Session::get('success')) @endif {{ \Session::forget('success') }} @if(\Session::get('error')) @endif

Service Details

@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('code')) {{ $errors->first('code') }} @endif
@if ($errors->has('commission_amount')) {{ $errors->first('commission_amount') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('telecalling_script')) {{ $errors->first('telecalling_script') }} @endif

Tutorial Links

@if(count($data->tutorialLinks)>0)
@foreach($data->tutorialLinks as $key=>$item)
@endforeach
@endif

@if(count($data->tutorialLinks)>0)

Add more Links

@endif

Apply Application through

apply_service_through == 'Default' ? 'checked' : ''}} name="application_by" value="Default" />
apply_service_through == 'Form' ? 'checked' : ''}} onclick="clickForm(this);" value="Form" />
apply_service_through == 'Link' ? 'checked' : ''}} name="application_by" value="Link" />
@if ($errors->has('application_by')) {{ $errors->first('application_by') }} @endif


@php $links=''; $link=''; @endphp @if(count($data->links)) @php foreach($data->links as $item) { $link=$item->link; $linkid=$item->id; } @endphp @endif

Upload Service Photo

@endsection