@extends('back.layouts.layout') @section('title','Edit Album') @section('content-header') Edit Album Dashboard Album Edit Album @endsection @section('content') @csrf @method('put') Name * @if ($errors->has('name')){{ $errors->first('name') }}@endif Order * @if ($errors->has('order')){{ $errors->first('order') }}@endif featured)=="1") checked @endif value="1"> Featured @if ($errors->has('featured')){{ $errors->first('featured') }}@endif Image @if($album->image!="") @endif @if ($errors->has('image')){{ $errors->first('image') }} @endif Status @foreach($statuses as $key=> $status) status) selected @endif>{{ $status }} @endforeach @if ($errors->has('status')){{ $errors->first('status') }} @endif Publish Save Album List @endsection