@extends('layouts.app_admin') @section('content')
Dashboard >
Blog List >
Add Blog
{{ csrf_field() }}
Name
*
@if ($errors->has('testimonials_name'))
{{ $errors->first('testimonials_name') }}
@endif
Image
*
Browse
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
Description
*
{{ $blogs->description }}
Status
*
Select Status
status == 'active') selected @endif>Active
status == 'inactive') selected @endif>Inactive
Update
Cancel
@endsection