@extends('layouts.admin') @section('content')

{{__('Edit Blog')}}

@csrf
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('slug')) {{ $errors->first('slug') }} @endif
@if ($errors->has('details')) {{ $errors->first('details') }} @endif
@if($blog->image) img @else No img @endif

{{__('Image')}}

@if ($errors->has('image')) {{ $errors->first('image') }} @endif

{{ __('Accepted Files') }}: JPEG, JPG, PNG
{{ __('Recommend Size') }}: 870 x 500 (1MB)

@updateButton
@endsection @push('style') @endpush @push('script') @endpush