@extends('back.layouts.layout') @section('title','Add Slider') @section('content-header') Add Slider Dashboard Slider Add Slider @endsection @section('content') @csrf @method('post') Name * @if ($errors->has('name')){{ $errors->first('name') }}@endif Link @if ($errors->has('link')){{ $errors->first('link') }}@endif Order * @if ($errors->has('order')){{ $errors->first('order') }}@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 Slider List @endsection