@extends('admin.layout.master') @section('content')

User Details Panel

@if(Session::has('errors'))
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

User Information

  • {{ $customer_data->student_name }}
  • {{ $customer_data->student_username }}
  • {{ $customer_data->student_gender }}
  • {{ $customer_data->student_email }}
  • {{ $customer_data->student_address }}
  • {{ $customer_data->zip_code }}
 
@endsection @section('scripts') @endsection