@extends('admin.layouts.master') @section('title','Edit Course-include') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __('Edit') }} {{ __('Course Include') }}
{{ __('Back') }}
{{ csrf_field() }} {{ method_field('PUT') }}
{{ __('SelectCourse') }} :
@foreach($courses as $cou)
courses->id == $cou->id ? 'selected' : ''}}>{{ $cou->title}}
@endforeach
{{ __('Icon') }} :
*
{{ __('Detail') }} :
*
{!! $cate->detail !!}
{{ __('Status') }} :
status == '1' ? 'checked' : '' }} />
{{ __("Reset")}}
{{ __("Update")}}
@endsection