@extends('admin.layout') @section('content')

Admin Panel

Edit Artist

@if(session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf @method('PUT')
Featured artists appear on home and top of artist listing (Max 10).
@if($artist->artwork_image)
Artwork Image
@endif @if($artist->profile_image)
Profile Image
@endif
@csrf
@csrf @method('DELETE')
@endsection @push('scripts') @endpush