@extends('back.layouts.layout') @section('title','Add Certificate') @section('content-header') Add Certificate Dashboard Certificate Add Certificate @endsection @section('content') @csrf @method('post') Name * @if ($errors->has('name')){{ $errors->first('name') }}@endif Order * @if ($errors->has('order')){{ $errors->first('order') }}@endif Featured @if ($errors->has('featured')){{ $errors->first('featured') }}@endif Image @if ($errors->has('image')){{ $errors->first('image') }} @endif Status @foreach($statuses as $key=> $status) {{ $status }} @endforeach @if ($errors->has('status')){{ $errors->first('status') }} @endif Publish Save Certificate List @endsection