@extends('admin.layouts.app') @section('title', 'Level') @section('content')

{{ __('Level') }}

Edit Level

@csrf @method('PUT')
@include('admin.partials.form-errors', array('field' => 'name'))

Levels

@foreach($levels as $c) @endforeach
Name
{{$c->name}}
@endsection