@php
$action = isset($method) && $method=='create' ? route('role.store') : route('role.update', $role->id);
$title = isset($method) && $method=='create' ? __('role.create.title') : __('role.update.title');
$description = isset($method) && $method=='create' ? __('role.create.description') : __('role.update.description');
@endphp
{{$title}}
{{$description}}
{!! __('role.create.note') !!}