@extends('admin.master') @section('main')

Edit Stars

@if( session('messages') )

{{ session('messages') }}

@endif
@csrf @method('PUT')
@if($errors->has('second_title'))
{{ $errors->first('second_title') }}
@endif
@if($errors->has('icon'))
{{ $errors->first('icon') }}
@endif
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif
@endsection