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

Add Photo

@endsection @section('content')
@csrf @method('post')
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('album_id')){{ $errors->first('album_id') }}@endif
Image
@if ($errors->has('image')){{ $errors->first('image') }} @endif
Status
@if ($errors->has('status')){{ $errors->first('status') }} @endif
Publish
@endsection