@extends('backend.layouts.app') @section('title', @$data['title']) @section('content')

{{ @$data['title'] }}

@csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@if (@$data['url'])
@endif
@endsection