@extends('layouts.master') @section('title', 'Users Add/Edit') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.header-sub') @yield('title') {{ csrf_field() }} Code * Title * First Name * Last Name * Email * Please select @foreach ($school as $i => $item) user_school == $item->school_id ? 'selected' : '' }}> {{ $item->school_name }} @endforeach School * Please select user_role == 'CCo Superadmin' ? 'selected' : '' }}>CCo Superadmin user_role == 'OD Admin' ? 'selected' : '' }}>OD Admin user_role == 'School Secretary Admin' ? 'selected' : '' }}>School Secretary Admin Role * Please select user_status == 'Pending' ? 'selected' : '' }}> Pending user_status == 'Active' ? 'selected' : '' }}> Active user_status == 'Inactive' ? 'selected' : '' }}> Inactive Status * Picture Browse Back * These fields are required. @include('layouts.footer') @endsection
* These fields are required.