@extends('admin.master_layout') @section('title')
{{__('admin.Blog')}}
@endsection @section('admin-content')
{{__('admin.Create Blog')}}
{{__('admin.Blog List')}}
@csrf
{{__('admin.Image')}}
*
{{__('admin.Title')}}
*
{{__('admin.Slug')}}
*
{{__('admin.Category')}}
*
{{__('admin.Select Category')}}
@foreach ($categories as $category)
id == old('category') ? 'selected' : '' }} value="{{ $category->id }}">{{ $category->translate->name }}
@endforeach
{{__('admin.Description')}}
*
{{ old('description') }}
{{__('admin.Show on homepage')}}
{{__('admin.Mark as a Popular')}}
{{__('admin.Status')}}
{{__('admin.Tags')}}
{{__('admin.SEO Title')}}
{{__('admin.SEO Description')}}
{{ old('seo_description') }}
{{__('admin.Save')}}
@endsection