@extends('layouts.dashboard') @section('content')
Edit Voice
Back
@include('flash_msg')
{{ csrf_field() }}
Category
Select Category
@foreach($categories as $cate)
id==$add_voices->parent_id?'selected':''}}>{{$cate->name}}
@endforeach
Sub Parent Category
Select Category
@foreach($child_categories as $cate)
id == $add_voices->child_id ? 'selected="selected"' : '' }}>{{ $cate->name }}
@endforeach
Price
*
{{ Session::get('currencies') }}
@error('price'){{ $message }}@enderror
Title
*
@error('meta_title'){{ $message }}@enderror
Icon
@if($add_voices->icon)
@else
@endif
Voice Sample
@if (is_array($add_voices->voice_sample)) @foreach ($add_voices->voice_sample as $voice)
Your browser does not support the audio element.
@endforeach @endif
Description
*
{{ $add_voices->meta_description }}
@error('meta_description'){{ $message }}@enderror
Submit
@endsection