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