@extends('layouts.app_rest') @section('title', __('Edit Role')) @section('content')
{!! Form::open(['url' => action('RoleController@update', $role->id), 'method' => 'PUT', 'id' => 'role_add_form' ]) !!}
{!! Form::label('role_id', __( 'Position' ) . ':*') !!} {!! Form::select('role_id', $roles ,$role->id, ['class' => 'form-select', 'required', 'placeholder' => __( 'Name' ), 'disabled' ]); !!}
@foreach($locations as $location)
@endforeach
{!! Form::close() !!}
@endsection @section('javascript') @endsection