@extends('layouts.admin') @section('title', $Title) @section('content')
@if($message = Session::get('errormsg')) @endif @if($message = Session::get('msg')) @endif
@csrf @method('PUT')
@if($errors->any())
{{$errors->first('name',':message')}}
@endif
@if($errors->any())
{{$errors->first('short_description',':message')}}
@endif
@if($errors->any())
{{$errors->first('image',':message')}}
@endif
@if($errors->has('type'))
{{ $errors->first('type') }}
@endif
@if($errors->any())
{{$errors->first('order_by',':message')}}
@endif
@if($errors->any())
{{$errors->first('img_title',':message')}}
@endif
@if($errors->any())
{{$errors->first('img_alt',':message')}}
@endif
@endsection