@extends('backend.layouts.app') @section('title',__('label.update_role_page_title').' | '.env('APP_NAME')) @push('after-styles') @endpush @section('breadcrumb') {{--
--}} @endsection @section('content')

{{ __('label.update_role_form_title') }}

{{ Form::model($role,['route' => ['admin.roles.update', $role->id],'method' => 'PATCH','id' => 'updateroleForm', 'files' => true]) }} @include('backend.role.partials._form') {{ Form::close() }}
@endsection @section('after-scripts') @component('backend.layouts.components.validation')@endcomponent @endsection