@extends('admin.layouts.master') @section('title', 'Add Blog - Admin') @section('maincontent') @component('components.breadcumb',['fourthactive' => 'active']) @slot('heading') {{ __('Add Blog') }} @endslot @slot('menu1') {{ __('Blog') }} @endslot @slot('button')
{{ __("Back")}}
@endslot @endcomponent
@if ($errors->any()) @endif
{{ __('adminstaticword.AddBlog') }}
@csrf
@error('heading') {{ $message }} @enderror
@error('slug') {{ $message }} @enderror
@error('text') {{ $message }} @enderror
@error('date') {{ $message }} @enderror
@error('detail') {{ $message }} @enderror
@if(Auth::user()->role == 'admin')

{{ __('Browse') }}
@endif @if(Auth::user()->role == 'instructor')

{{ __('Upload') }}
@endif @if(Auth::user()->role == 'admin')


@endif


@endsection @section('script') @endsection