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

Add New Star

@if( session('messages') )

{{ session('messages') }}

@endif
@csrf
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif
@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