@extends('back.layouts.layout') @section('title','Edit Photo') @section('content-header')

Edit Photo

@endsection @section('content')
@csrf @method('put')
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('album_id')){{ ($errors->first('album_id')) ? old('name') : $photo->name }}@endif
Image
@if($photo->image!="")
@endif
@if ($errors->has('image')){{ $errors->first('image') }} @endif
Status
@if ($errors->has('status')){{ $errors->first('status') }} @endif
Publish
@endsection